Skip to content

Instantly share code, notes, and snippets.

@JimmyLv
Created December 14, 2020 12:44
Show Gist options
  • Select an option

  • Save JimmyLv/95513bdeec7b3f1086b050ed86a90b61 to your computer and use it in GitHub Desktop.

Select an option

Save JimmyLv/95513bdeec7b3f1086b050ed86a90b61 to your computer and use it in GitHub Desktop.
Twitter Auto Translator
// ==UserScript==
// @name Twitter Auto Translator
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://twitter.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(() => {
if (document.querySelector('[aria-expanded="false"][dir="auto"][role="button"][data-focusable="true"][tabindex="0"]')) {
document.querySelector('[aria-expanded="false"][dir="auto"][role="button"][data-focusable="true"][tabindex="0"]').click()
}
}, 500)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment