-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLogOut.js
41 lines (41 loc) · 2.78 KB
/
LogOut.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
window.onload = function() {
doSites(document.getElementById("sitelist"), [
["AOL", and(get("http://my.screenname.aol.com/_cqr/logout/mcLogout.psp?sitedomain=startpage.aol.com&authLev=0&lang=en&locale=us"), get("https://api.screenname.aol.com/auth/logout?state=snslogout&r=" + Math.random()))],
["Amazon", get("http://www.amazon.com/gp/flex/sign-out.html?action=sign-out")],
["Blogger", get("http://www.blogger.com/logout.g")],
["Delicious", get("http://www.delicious.com/logout")],
["DeviantART", post("http://www.deviantart.com/users/logout")],
["DreamHost", get("https://panel.dreamhost.com/index.cgi?Nscmd=Nlogout")],
["Dropbox", get("https://www.dropbox.com/logout")],
["eBay", get("https://signin.ebay.com/ws/eBayISAPI.dll?SignIn")],
["Gandi", get("https://www.gandi.net/login/out")],
["GitHub", get("https://github.com/logout")],
["GMail", get("http://mail.google.com/mail/?logout")],
["Google", get("https://www.google.com/accounts/Logout")],
["Hulu", get("https://secure.hulu.com/logout")],
["Instapaper", get("http://www.instapaper.com/user/logout")],
["Linode", get("https://manager.linode.com/session/logout")],
["LiveJournal", post("http://www.livejournal.com/logout.bml", {"action:killall": "1"})],
["MySpace", get("http://www.myspace.com/index.cfm?fuseaction=signout")],
["NetFlix", get("http://www.netflix.com/Logout")],
["New York Times", get("http://www.nytimes.com/logout")],
["Newegg", get("https://secure.newegg.com/NewMyAccount/AccountLogout.aspx")],
["Photobucket", get("http://photobucket.com/logout")],
["Skype", get("https://secure.skype.com/account/logout")],
["Slashdot", get("http://slashdot.org/my/logout")],
["SoundCloud", get("http://soundcloud.com/logout")],
["Steam Community", get("http://steamcommunity.com/?action=doLogout")],
["Steam Store", get("http://store.steampowered.com/logout/")],
["ThinkGeek", get("https://www.thinkgeek.com/brain/account/login.cgi?a=lo")],
["Threadless", get("http://www.threadless.com/logout")],
["Tumblr", get("http://www.tumblr.com/logout")],
["Vimeo", get("http://vimeo.com/log_out")],
["Wikipedia", get("http://en.wikipedia.org/w/index.php?title=Special:UserLogout")],
["Windows Live", get("http://login.live.com/logout.srf")],
["Woot", get("https://account.woot.com/logout")],
["Wordpress", get("https://wordpress.com/wp-login.php?action=logout")],
["Yahoo!", get("https://login.yahoo.com/config/login?.src=fpctx&logout=1&.direct=1&.done=http://www.yahoo.com/")],
["YouTube", post("http://www.youtube.com", {"action_logout": "1"}, true)],
[]
])
}