您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes premium features on Pixlr.com, because they are just on your way.
当前为
// ==UserScript== // @name [Pixlr X] Premium Content Remover // @version 2.0 // @description Removes premium features on Pixlr.com, because they are just on your way. // @author HKR // @match https://pixlr.com/* // @grant none // @namespace HKR // @supportURL https://github.com/Hakorr/Userscripts/issues // @require https://gf.qytechs.cn/scripts/21927-arrive-js/code/arrivejs.js // @grant GM_addStyle // ==/UserScript== const userScriptName = "[Premium Content Remover]"; let count = 1; console.log(`${userScriptName} Started!`); GM_addStyle('#sneaky { visibility: hidden !important; }'); const removeList = [ ".premium", ".get-premium", "#try-premium", "#tool-glitch", "#tool-focus", "#tool-dispersion", "#cutout-auto", "#modal-pop" ]; function handlePremiumElement(elem) { switch(elem.parentElement.getAttribute("class")) { case "template-box large": elem.parentElement.outerHTML = ""; break; case "template-box": elem.parentElement.outerHTML = ""; break; default: elem.outerHTML = ""; break; } console.log(`${userScriptName} Removed a premium element! (${count++})`); } function getPremiumElements(elem) { Array.from(document.querySelectorAll(elem)).forEach(elem => { handlePremiumElement(elem); }); } function remove(elem) { getPremiumElements(elem); document.arrive(elem, function () { getPremiumElements(elem); }); } removeList.forEach(elem => { remove(elem); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址