Skip to content

Instantly share code, notes, and snippets.

@lac5
Last active June 17, 2024 15:04
Show Gist options
  • Save lac5/551ceee80e95213964900f285a41d2ad to your computer and use it in GitHub Desktop.
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
// ==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==
// ==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