Last active
June 17, 2024 15:04
-
-
Save lac5/551ceee80e95213964900f285a41d2ad to your computer and use it in GitHub Desktop.
Automatically redirects to a user's Twitter page when viewing from the ID page
This file contains hidden or 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 ID Redirect | |
// @namespace larryc5 | |
// @version 1.0 | |
// @description Automatically redirects to a user's Twitter page when viewing from the ID page. | |
// @author Larry Costigan | |
// @match https://twitter.com/intent/user?* | |
// @grant none | |
// @run-at document-end | |
// @downloadURL https://gist.github.com/larryc5/551ceee80e95213964900f285a41d2ad/raw/twitter-id-redirect.user.js | |
// @updateURL https://gist.github.com/larryc5/551ceee80e95213964900f285a41d2ad/raw/twitter-id-redirect.meta.js | |
// ==/UserScript== |
This file contains hidden or 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 ID Redirect | |
// @namespace larryc5 | |
// @version 1.0 | |
// @description Automatically redirects to a user's Twitter page when viewing from the ID page. | |
// @author Larry Costigan | |
// @match https://twitter.com/intent/user?* | |
// @grant none | |
// @run-at document-end | |
// @downloadURL https://gist.github.com/larryc5/551ceee80e95213964900f285a41d2ad/raw/twitter-id-redirect.user.js | |
// @updateURL https://gist.github.com/larryc5/551ceee80e95213964900f285a41d2ad/raw/twitter-id-redirect.meta.js | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var link = document.querySelector('[href][rel="me"]'); | |
if (link) { | |
console.log(link.href); | |
location.href = link.href; | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment