您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
redirects avclub.com to avclub.com/latest
当前为
// ==UserScript== // @name redirect avclub to latest // @namespace Violentmonkey Scripts // @match *://*.gizmodo.com/* // @match *://*.jalopnik.com/* // @match *://*.jezebel.com/* // @match *://*.kotaku.com/* // @match *://*.lifehacker.com/* // @match *://*.deadspin.com/* // @match *://*.theroot.com/* // @match *://*.thetakeout.com/* // @match *://*.theonion.com/* // @match *://*.theinventory.com/* // @match *://*.kinja.com/* // @grant none // @version 2019-04-22 // @author jccalhoun // @description redirects avclub.com to avclub.com/latest // ==/UserScript== var els = document.querySelectorAll("a[href^='//avclub.com']"); for (var i = 0, l = els.length; i < l; i++) { var el = els[i]; el.href = 'https://www.avclub.com/latest'; }; //the writing of this was aided by using the answers here: https://stackoverflow.com/questions/10572735/javascript-getelement-by-href