Reddit Mail Redirect Cleaner

Automatically clean and redirect from tracking URLs in Reddit mail links.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Reddit Mail Redirect Cleaner
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Automatically clean and redirect from tracking URLs in Reddit mail links.
// @author       sharmanhall
// @match        *://*/*
// @match        *://click.redditmail.com/*
// @grant        none
// @icon         https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @run-at       document-end
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Listen for click events on the entire document
    document.addEventListener('click', function(e) {
        // Check if the clicked element is a link that includes "click.redditmail.com"
        var target = e.target.closest('a[href*="click.redditmail.com"]');
        if (target) {
            // Prevent the default link behavior
            e.preventDefault();
            // Decode the URL and extract the direct Reddit link
            const url = new URL(decodeURIComponent(target.href));
            const redditURLMatch = url.href.match(/https:\/\/www\.reddit\.com\/message\/messages\/[a-zA-Z0-9]+/);
            if (redditURLMatch) {
                // Redirect to the extracted Reddit URL
                window.location.href = redditURLMatch[0];
            } else {
                // Alert the user if no clean URL is found
                alert("Could not find a clean URL to redirect to.");
            }
        }
    }, true);
})();