JustWatch Link Cleaner

Cleans JustWatch links to get directly to the movies

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

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

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

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

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

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

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         JustWatch Link Cleaner
// @namespace    MickyFoley
// @version      1.2
// @description  Cleans JustWatch links to get directly to the movies
// @author       MickyFoley
// @match        https://www.justwatch.com/*
// @license      GPL-3.0-only
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Function to clean a URL
    function cleanUrl(url) {
        const urlObj = new URL(url);
        const encodedUrl = urlObj.searchParams.get('r');
        if (encodedUrl) {
            // Decoding the URL
            let decodedUrl = decodeURIComponent(encodedUrl);
            console.log("Decoded URL before cleanup:", decodedUrl);

            // Remove the `searchReferral` parameter if present
            decodedUrl = decodedUrl.split('?searchReferral=')[0];
            console.log("Decoded URL after cleanup:", decodedUrl);

            return decodedUrl;
        }
        return null;
    }

    // Function to clean and modify the links
    function cleanLinks() {
        const links = document.querySelectorAll('a[href*="click.justwatch.com"], a[href*="d.justwatch.com/a?"]');
        console.log(`Found ${links.length} links to clean.`);
        links.forEach(link => {
            const cleanUrlParam = cleanUrl(link.href);
            if (cleanUrlParam) {
                console.log("Cleaning link:", link.href, " -> ", cleanUrlParam);
                link.href = cleanUrlParam;
            }
        });
    }

    // Initial run to clean already existing links
    cleanLinks();

    // Observer to watch for dynamically added links
    const observer = new MutationObserver(mutations => {
        cleanLinks();
    });

    observer.observe(document.body, { childList: true, subtree: true });
})();