您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Unchecks all of Twitter's infered interests when you go to that page in you account settings. You need to manually click save.
// ==UserScript== // @name Kill Twitter Interests // @version 0.1 // @description Unchecks all of Twitter's infered interests when you go to that page in you account settings. You need to manually click save. // @author Ryan Castellucci @ryancdotorg // @namespace Violentmonkey Scripts // @match https://twitter.com/settings/your_twitter_data/twitter_interests // @grant none // ==/UserScript== (function(){ var h = 0, timeout = Date.now() + 15000, a = function(){ document.querySelectorAll(".interest-label>input:checked").forEach(function(e){h=1;e.checked=0;}); if (!h) setTimeout(a, 100); }; a(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址