Skip to content

Instantly share code, notes, and snippets.

@kn1kn1
Last active June 4, 2025 12:50
Show Gist options
  • Select an option

  • Save kn1kn1/d7af4f6172d5b99a9a5d82db2dc48681 to your computer and use it in GitHub Desktop.

Select an option

Save kn1kn1/d7af4f6172d5b99a9a5d82db2dc48681 to your computer and use it in GitHub Desktop.
  • https://twitter.com/settings/your_twitter_data/twitter_interests にChromeでアクセス
  • F12を押下し、DevToolsを表示して、JavaScriptコンソールを表示(F12ではなく、直接option + cmd + jでも可)
  • JavaScriptコンソールで以下を実行
    • warning が出るので予めallow pastingを実行する必要がある
allow pasting
var timer=100;document.querySelectorAll(
"div > input[type='checkbox']:checked"
).forEach((interest) => {
setTimeout(function(){interest.click()},timer);timer+=2000;});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment