您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
19/05/2025, 13.47.01
// ==UserScript== // @name Automatically read full article // @namespace https://doubly.so/user-scripts // @match https://www.realclearscience.com/* // @match https://www.realclearpolitics.com/* // @match https://www.realclearpolicy.com/* // @match https://www.realcleardefence.com/* // @match https://www.realclearworld.com/* // @grant none // @version 1.0 // @author Devin Bayer <[email protected]> // @license MIT // @description 19/05/2025, 13.47.01 // ==/UserScript== $ = (q) => document.querySelector(q) if (! window.location.hash) { console.info('user script - auto read') window.location.hash = 'auto-read-full' $('.more-link a').click() } else { console.log('user script - skipping auto read due to reload / back button') }