您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
cnbeta排版
// ==UserScript== // @name cnbeta网排版 // @namespace http://tampermonkey.net/ // @version 0.1 // @description cnbeta排版 // @author foolmos // @match https://www.cnbeta.com.tw/articles/* // @grant GM_addStyle // @license MIT // ==/UserScript== GM_addStyle(".cnbeta-side-box, .article-share-code { display:none !important;}"); GM_addStyle(".cnbeta-update { width:75% !important;margin-left:15% !important;}"); GM_addStyle("p { font-size:18px !important;margin:0 0 35px 0 !important;line-height:1.9 !important;}"); (function() { 'use strict'; // Your code here... })();