您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skips the "Click Here to Continue" buttons
// ==UserScript== // @name Pricespy/Prisjakt Redirect Skiper // @namespace Pricespy/Prisjakt Redirect Skiper by C4illin // @description Skips the "Click Here to Continue" buttons // @match *://*.prisjakt.nu/redirect.php?ftgid=* // @match *://*.prisjakt.no/redirect.php?ftgid=* // @match *://*.pricespy.co.uk/redirect.php?ftgid=* // @match *://*.pricespy.uk/redirect.php?ftgid=* // @match *://*.pricespy.co.nz/redirect.php?ftgid=* // @match *://*.pricespy.ie/redirect.php?ftgid=* // @match *://*.kompario.pl/redirect.php?ftgid=* // @match *://*.ledenicheur.fr/redirect.php?ftgid=* // @match *://*.pagomeno.it/redirect.php?ftgid=* // @match *://*.hintaopas.fi/redirect.php?ftgid=* // @match *://*.prisjagt.dk/redirect.php?ftgid=* // @run-at document-start // @grant none // @author C4illin <[email protected]> // @oujs:author C4illin // @version 1.2.2 // @license MIT; https://opensource.org/licenses/MIT // @copyright 2018, C4illin (https://github.com/C4illin) // ==/UserScript== if (window.location.search.endsWith("&go=1") == false) { var newlink = window.location.origin + window.location.pathname + window.location.search + "&go=1" window.location.replace(newlink) }