Skip to content

Instantly share code, notes, and snippets.

@oquno
Created June 23, 2009 05:59
Show Gist options
  • Save oquno/134383 to your computer and use it in GitHub Desktop.
Save oquno/134383 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Twitter Souce Changer
// @namespace http://oq.la/
// @description camouflage Twitter clients from web
// @include http://twitter.com/
// @include https://twitter.com/
// ==/UserScript==
$(document).ready(function(){
$('#source').remove();
$('#status').before('<select id="source" name="source">');
var sources = [
'web',
'mobile web',
'Afficheur',
'Chattr',
'chirrup',
'friendfeed',
'movatter',
'movatwitter',
'NatsuLion',
'NatsuLiphone',
'NetTwitter',
'IM',
'iTwits',
'PeraPeraPrv',
'pidgin-twitter',
'Scalaris',
'tig.rb',
'tokotto',
'Tween',
'TweetDeck',
'TweetTie',
'twicli',
'twigadge',
'twitterfeed',
'TwitterFox',
'TwitterLine',
'TwitterIrcGateway',
'TwitterPod',
'ちーたん'
];
for(var i=0; i<sources.length; i++){
$('#source').append('<option>'+sources[i]+'</option>');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment