Closed clsource closed 1 year ago
Firefox
1.6.0
Userscript
Tampermonkey
The Tweet button is now Post.
Tweet
Post
This code could fix it 👍
Array.from(unsafeWindow.document.getElementsByTagName('span')).forEach(el => { if (el.firstChild && el.firstChild.data == "Post") { el.innerHTML = "Tweet"; } });
v1.8.0, which adds the ability to change from post to tweet, is now available on greasyfork.
Browser
Firefox
Version
1.6.0
Release Type
Userscript
Userscript manager
Tampermonkey
What is the problem?
The
Tweet
button is nowPost
.This code could fix it 👍