您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
makes the article content wider on ArsTechnica
// ==UserScript== // @name ArsTechnica Wide Mode // @license MIT // @namespace https://meyer.eu // @version 1.0.1 // @description makes the article content wider on ArsTechnica // @author [email protected] // @match http*://arstechnica.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=arstechnica.com // @grant none // ==/UserScript== (function() { 'use strict'; const adDivs = document.querySelectorAll('div.ad-wrapper'); adDivs.forEach(adDiv => adDiv.remove()); const divs = document.querySelectorAll('main > article > div'); const [head, ...list] = divs; list.forEach(div => { div.className = 'post-content-wrapper relative mx-auto px-[15px] sm:max-w-3xl sm:px-5 lg:px-8 xl:px-0'; }); })();