Created
August 22, 2021 01:35
-
-
Save malcolmocean/b01ada74b44dc1b4d1cbefd87d5f73f2 to your computer and use it in GitHub Desktop.
Destroy "?s=21" permalink urls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Twitter - fuck ?s=21 | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description no more "More Tweets" on your twitter permalinks shared in other apps. see just the tweet and its replies | |
// @author @Malcolm_Ocean | |
// @match https://twitter.com/*?s=21 | |
// @match https://mobile.twitter.com/**?s=21 | |
// @grant none | |
// ==/UserScript== | |
location.href = location.href.replace('?s=21', '') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment