Greasy Fork

Greasy Fork is available in English.

JustWatch Link Cleaner

Cleans JustWatch links to get directly to the movies

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

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

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

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

您需要先安装一款用户脚本管理器扩展,例如 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 });
})();