您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
将surface go2适配了哔咔漫画,理论上可以自己调参数修改width的百分比
// ==UserScript== // @name 适配surface屏幕尺寸的哔咔漫画网站脚本 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 将surface go2适配了哔咔漫画,理论上可以自己调参数修改width的百分比 // @author Le_le // @run-at document-end // @match https://manhuabika.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=manhuabika.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Your code here... var bd; bd=document.getElementsByTagName("body")[0]; //修改@media screen and (min-width: 1000px)的样式 var style=document.createElement("style"); style.innerHTML="@media screen and (max-width: 1000px){.modeset{width: 80%;}}"; bd.appendChild(style); console.log("适配surface屏幕尺寸的哔咔漫画网站脚本已加载"); })();