您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Watch MP4 videos on the Repubblica.it website with a HTML5 container
// ==UserScript== // @name Video Repubblica in HTML5 // @name:it Video Repubblica in HTML5 // @namespace http://andrealazzarotto.com/ // @version 1.1.2 // @description Watch MP4 videos on the Repubblica.it website with a HTML5 container // @description:it Guarda i video su Repubblica.it in MP4 con un contenitore HTML5 // @author Andrea Lazzarotto // @match http://video.repubblica.it/* // @match https://video.repubblica.it/* // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html // ==/UserScript== $(document).ready(function() { var contentURL = $("script[type*='ld+json']").text().split('contentUrl')[1].split('"')[2] || false; if(!!contentURL && contentURL.indexOf('.mp4') > 0) { $('#playerCont').empty().append('<video src="' + contentURL + '" controls width="100%" height="100%"></video>'); } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址