您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Project name hider for Glitch.Com
// ==UserScript== // @name Glitch.Com Project Name Hider // @name:ar Glitch.Com Project Name Hider // @name:bg Glitch.Com Project Name Hider // @name:cs Glitch.Com Project Name Hider // @name:da Glitch.Com Project Name Hider // @name:de Glitch.Com Project Name Hider // @name:el Glitch.Com Project Name Hider // @name:en Glitch.Com Project Name Hider // @name:eo Glitch.Com Project Name Hider // @name:es Glitch.Com Project Name Hider // @name:fi Glitch.Com Project Name Hider // @name:fr Glitch.Com Project Name Hider // @name:fr-CA Glitch.Com Project Name Hider // @name:he Glitch.Com Project Name Hider // @name:hu Glitch.Com Project Name Hider // @name:id Glitch.Com Project Name Hider // @name:it Glitch.Com Project Name Hider // @name:ko Glitch.Com Project Name Hider // @name:ja Glitch.Com Project Name Hider // @name:nb Glitch.Com Project Name Hider // @name:nl Glitch.Com Project Name Hider // @name:pl Glitch.Com Project Name Hider // @name:pt-BR Glitch.Com Project Name Hider // @name:ro Glitch.Com Project Name Hider // @name:ru Glitch.Com Project Name Hider // @name:sk Glitch.Com Project Name Hider // @name:sr Glitch.Com Project Name Hider // @name:sv Glitch.Com Project Name Hider // @name:th Glitch.Com Project Name Hider // @name:tr Glitch.Com Project Name Hider // @name:uk Glitch.Com Project Name Hider // @name:ug Glitch.Com Project Name Hider // @name:vi Glitch.Com Project Name Hider // @name:zh-CN Glitch.Com Project Name Hider // @name:zh-TW Glitch.Com Project Name Hider // @description Project name hider for Glitch.Com // @description:ar Project name hider for Glitch.Com // @description:bg Project name hider for Glitch.Com // @description:cs Project name hider for Glitch.Com // @description:da Project name hider for Glitch.Com // @description:de Project name hider for Glitch.Com // @description:el Project name hider for Glitch.Com // @description:en Project name hider for Glitch.Com // @description:eo Project name hider for Glitch.Com // @description:es Project name hider for Glitch.Com // @description:fi Project name hider for Glitch.Com // @description:fr Project name hider for Glitch.Com // @description:fr-CA Project name hider for Glitch.Com // @description:he Project name hider for Glitch.Com // @description:hu Project name hider for Glitch.Com // @description:id Project name hider for Glitch.Com // @description:it Project name hider for Glitch.Com // @description:ja Project name hider for Glitch.Com // @description:ko Project name hider for Glitch.Com // @description:nb Project name hider for Glitch.Com // @description:nl Project name hider for Glitch.Com // @description:pl Project name hider for Glitch.Com // @description:pt-BR Project name hider for Glitch.Com // @description:ro Project name hider for Glitch.Com // @description:ru Project name hider for Glitch.Com // @description:sk Project name hider for Glitch.Com // @description:sr Project name hider for Glitch.Com // @description:sv Project name hider for Glitch.Com // @description:th Project name hider for Glitch.Com // @description:tr Project name hider for Glitch.Com // @description:uk Project name hider for Glitch.Com // @description:ug Project name hider for Glitch.Com // @description:vi Project name hider for Glitch.Com // @description:zh-CN Project name hider for Glitch.Com // @description:zh-TW Project name hider for Glitch.Com // @author fir4tozden // @version 1.1 // @license MIT // @namespace https://greasyfork.org/users/821317 // @match *://*.glitch.com/* // @icon https://www.google.com/s2/favicons?domain=glitch.com // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js // ==/UserScript== function hide() { location.pathname.startsWith("/edit") && document.title.includes("–") && (document.title = document.title.split(" – ")[0] + " – " + "*".repeat(document.title.split(" – ")[1].length), history.pushState("", "", "/edit/#!/" + "*".repeat(document.title.split(" – ")[1].length))), location.pathname.startsWith("/~") && "Glitch" !== document.title && (document.title = "*".repeat(document.title.length), history.pushState("", "", "/~" + "*".repeat(document.title.length))), (location.pathname.startsWith("/") || location.pathname.startsWith("/dashboard") || location.pathname.startsWith("/edit")) && (location.pathname.startsWith("/edit") || $(".css-1tjp9t7") .css({ filter: "blur(3px)" }), $(".css-xwfnja") .css({ filter: "blur(3px)" }), $(".css-wgv2p7") .css({ filter: "blur(3px)" }), $(".css-1xkrs1g") .css({ filter: "blur(3px)" }), $(".css-evm2r") .css({ filter: "blur(9px)" }), $(".css-1rvzk34") .css({ filter: "blur(3px)" }), $(".css-1411e20") .css({ filter: "blur(3px)" }), $(".css-1jjdp9u") .css({ filter: "blur(9px)" }), $(".css-y614ld") .css({ filter: "blur(3px)" }), $(".css-1pqb65r") .css({ filter: "blur(3px)" }), $(".sc-cCcYRi") .css({ filter: "blur(3px)" }), $(".sc-hiCivh") .css({ filter: "blur(3px)" })) } $(function () { hide(), setInterval(() => { hide() }, 100) });