Created
January 24, 2014 12:42
-
-
Save lyricallogical/8596526 to your computer and use it in GitHub Desktop.
userscript to disable autocompletion on twitter
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-autocompletion-disabler | |
// @namespace lyrical.logical | |
// @description disable autocompletion on twitter | |
// @match https://twitter.com/ | |
// ==/UserScript== | |
(function() { | |
var form = document.getElementsByClassName("tweet-form")[0]; | |
var menu = form.getElementsByClassName("dropdown-menu typeahead")[0]; | |
menu.parentElement.removeChild(menu); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment