您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
为Anime1的视频播放启用宽屏样式
当前为
// ==UserScript== // @name Anime1 Wide // @namespace https://gf.qytechs.cn/zh-CN/scripts/395538 // @description 为Anime1的视频播放启用宽屏样式 // @author Shira // @homepage https://gf.qytechs.cn/zh-CN/scripts/395538 // @run-at document-start // @match https://*.anime1.me/* // @version 1.00 // ==/UserScript== (function() {var css = ""; if (false || (new RegExp("^(http|https)://anime1.me/.*$")).test(document.location.href)) css += [ "@media screen and (min-width: 769px) {.content-area {width: 100% !important;}}", ".vframe {width: 1200px !important; height: 640px !important;}", "#secondary {display: none !important;}" ].join("\n"); var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); var heads = document.getElementsByTagName("head"); if (heads.length > 0) { heads[0].appendChild(node); } var bodys = document.getElementsByTagName("body"); if (bodys.length > 0) { bodys[0].appendChild(node); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址