Skip to content

Instantly share code, notes, and snippets.

@joesondow
Created August 16, 2016 22:11
Show Gist options
  • Save joesondow/a031388c4571dc12e6237d2eb2c92797 to your computer and use it in GitHub Desktop.
Save joesondow/a031388c4571dc12e6237d2eb2c92797 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name People You Follow
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Put the "People you follow" link back on the Twitter notifications page of a Verified user
// @author @JoeSondow
// @match https://twitter.com/i/notifications*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('#content-main-heading').append(' / <a href="https://twitter.com/i/notifications?filter=following">People you follow</a>');
})();
@Korb
Copy link

Korb commented Mar 7, 2022

The script is not recognized as compatible with Tampermonkey 4.13.6136. Mozilla Firefox 98.0 (64-bit).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment