Greasy Fork

Greasy Fork is available in English.

British Converter

Replaces 'cookie' with 'biscuit' on UK sites

当前为 2025-03-17 提交的版本,查看 最新版本

// ==UserScript==
// @name         British Converter
// @match        *://*.uk/*
// @match        *://*.co.uk/*
// @description  Replaces 'cookie' with 'biscuit' on UK sites
// @version      0.1
// @grant        none
// @namespace    https://elouan.xyz/biscuit
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const hostname = window.location.hostname;

    if (hostname.includes(".uk")) {
        document.body.innerHTML = document.body.innerHTML.replace(/cookie/gi, "biscuit");
        document.body.innerHTML = document.body.innerHTML.replace(/cookies/gi, "biscuits");
    }
})();