您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
(FlashTube) Replace the current HTML5 Player with Flash.
当前为
// ==UserScript== // @namespace http://polarityweb.weebly.com/ // @name FlashTube // @include http://*.youtube.com/*.html // @version 1.0.0 // @description (FlashTube) Replace the current HTML5 Player with Flash. // @author Polarity // @description Restore the Flash player on Youtube to improve and fix some playback issues in the HTML5 player. This is a fix for older browsers that have been automatically switched to the HTML5 player automatically and does not have the support for the different Codecs used on Youtube. // // FlashTube // // Copyright (c) 2015, Polarity // Released under the GPL license // http://www.gnu.org/copyleft/gpl.html // -------------------------------------------------------------------- // Mod By: Polarity // ==/UserScript== (function(){ if(location.hostname.match(/^www.youtube.com/i)) { var script = document.createElement("script"); script.type = "text/javascript"; script.textContent = 'document.createElement("video").constructor.prototype.canPlayType = function(type){return ""}'; document.documentElement.appendChild(script); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址