Cloudflare ugly token remove from url

Removes the tokenized cloudflare query from url

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Cloudflare ugly token remove from url
// @namespace    http://tampermonkey.net/
// @version      1
// @description  Removes the tokenized cloudflare query from url
// @author       Root Android And Ethical Hacker
// @match        *://*/*
// @grant        none
// @exclude      /^https?://.*amazon\.*/*
// @exclude      /^https?://.*google\.*/*
// @exclude      /^https?://.*youtube\.*/*
// ==/UserScript==

(function() {
    'use strict';

    function detectQueryString(url) {
        var pattern = new RegExp(/[\?&](__cf_chl_jschl_tk__|__cf_chl_captcha_tk__)=[^&]+/);

        return pattern.test(url);
    }

    function start(){
        var detect = detectQueryString(window.location.href);
        if(detect){
            console.log('%c Ugly Cloudflare url removed','color: red; font-size: 20px');
            history.replaceState && history.replaceState(
                null, '', location.pathname + location.search.replace(/[\?&](__cf_chl_jschl_tk__|__cf_chl_captcha_tk__)=[^&]+/, '').replace(/^&/, '?') + location.hash
            );
        }else{
            console.log('Ugly Cloudflare url not found!!');
        }
    }
    start();
})();