您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds the string '?print=1' to all of the FAQ links on a game's FAQ page, making them point to the lightweight print version.
当前为
- // ==UserScript==
- // @name GameFAQs - Print Version FAQ links
- // @namespace rudicron
- // @description Adds the string '?print=1' to all of the FAQ links on a game's FAQ page, making them point to the lightweight print version.
- // @include http://www.gamefaqs.com/*/*/faqs
- // @include https://www.gamefaqs.com/*/*/faqs
- // @version 1
- // @grant none
- // ==/UserScript==
- var aList = document.body.querySelectorAll("td.ctitle > a");
- for (var a of aList) {
- var link = a.getAttribute("href");
- if (link.includes("?")) {
- if (! link.toLowerCase().includes("print=1") ) {
- a.setAttribute("href", link.concat("&print=1"));
- }
- } else {
- a.setAttribute("href", link.concat("?print=1"));
- }
- }