Pricespy/Prisjakt Redirect Skiper

Skips the "Click Here to Continue" buttons

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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)
}