Pricespy/Prisjakt Redirect Skiper

Skips the "Click Here to Continue" buttons

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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)
}