您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name Remove Ticktick upgrade button // @namespace http://tampermonkey.net/ // @version 0.3 // @description try to take over the world! // @author You // @match https://*.ticktick.com/ // @match https://ticktick.com/ // @grant none // ==/UserScript== function waitForElement(elementId, callBack){ window.setTimeout(function(){ var element = document.getElementById(elementId); if(element){ callBack(elementId, element); }else{ waitForElement(elementId, callBack); } },500) } waitForElement("left-bottom-view",function(){ var left_bottom = document.getElementById('left-bottom-view'); //left_bottom.parentNode.removeChild(left_bottom); //document.getElementById("project-list-view").style.paddingBottom = "0"; var upgrade = document.getElementById('upgrade-button'); upgrade.parentNode.removeChild(upgrade); });