Advertisement
Guest User

f2p remover

a guest
Aug 18th, 2014
2,480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.51 KB | None | 0 0
  1. (function () {
  2. var NUKE_REGEX = /\b(?:trailer|teaser|Free|Online|Peggle|Coil|Mightier|Cubic|PlanetSide|The Banner Saga|Trial|F2P|Moonbase Alpha|RIFT|Blacklight|The Cat and the Coup|Gear Up|Ragnarok|Smashmuck Champions|Age of Conan|Ascend|iPi Mocap Studio 2|RaiderZ|iPi Recorder 2|Renaissance Heroes|Bounty|Forge|Cry of Fear|Dragons Prophet|SolForge|Driver Fusion|Toribash|Marvel Puzzle Quest|Solstice Arena|Soldier Front 2|Elsword|Only if|Ohm Studio|8BitMMO|The Plan|Battle Nations|GunZ|Dragons Prophet|World of Guns|Fistful of Frags|Cannons Lasers Rockets|City of Steam|Dethroned|Subnautica Terrain Test|Conquest of Champions|Serena|You Have to Win the Game|Evolution RTS|HAWKEN|Rise of Incarnates Beta|Thinking with Time Machine|Marvel Heroes|March of War|CRYENGINE|Tom Clancys Ghost Recon Phantoms|World of Guns|Dragon Nest Europe|Dungeonland|Mabinogi|Loadout|RaceRoom Racing Experience|Rusty Hearts|Forsaken World|Dragon Nest|Stronghold Kingdoms|Bloodline Champions|Americas Army 3|Global Agenda|Tribes|CrimeCraft GangWars|Spiral Knights|Puzzle Pirates|Alliance of Valiant Arms|Super Monday Night Combat|Tactical Intervention|Battlezone|MicroVolts Surge|Neverwinter|APB Reloaded|Fallen Earth|Realm of the Mad God|EverQuest II|Americas Army|Archeblade|Moon Breakers|War of the Immortals|Star Conflict|Vindictus|Combat Arms|Atlantica|C9|Super Crate Box|Dungeon Party|Frontline Tactics|Football Superstars|Champions of Regnum|RIDGE RACER|Warframe|March of War|War Thunder|Shadow Warrior Classic|Pinball Arcade|Path of Exile|Panzar|Tom Clancys Ghost Recon Phantoms - NA|Dragons and Titans|Nosgoth Base Game Default Package|Pandora Saga|Brawl Busters|World of Battles|The Gathering|PoxNora|Bullet Run|Arctic Combat|District 187|ProtoGalaxy|Battle Islands|The Expendabros|GAR Default store package|Floating Point|La Tale|Dark Blood|Velvet Sundown|Grand Chase|Saints Row|The Forgotten Ones|Face of Mankind|Xam|Heroes|Robocraft|Sunrider|Unturned|NEOTOKYO|Aura Kingdom|Warface|Reversion|Cakewalk Loop Manager|EVGA Precision X|Amazing World|Saira|Royal Quest|Firefall|demo|cinematic|pegi|esrb|Inspector Zé e Robot Palhaço em: Praxe do Gangue das Capas Negras|Rugby Challenge Visual Presentation|Rugby Challenge Stadium Creation|Nuclear Dawn Commander Tutorial|Fallout: New Vegas - Lonesome Road DLC|Stronghold3 Gameplay|ROBT|Worms Crazy Golf|Dungeon Defenders Dev Diary 1|Take on Helicopters - Tutorial|Take on Helicopters - Ship Rescue|Crazy Machines 2 Halloween DLC|Sniper: Ghost Warrior 2 Unrated|Sniper: Ghost Warrior 2 USK|Steel Storm: Burning Retribution Weapon Pack DLC|Batman Arkham City Robin DLC|Crimecraft: Gangwars Territory Wars Producer Video|Crazy Machines 2: Happy New Year|Age of Empires III: Complete|X3: Albion Prelude Now Available|Total War: SHOGUN 2 Fall of the Samurai|Aliens Colonial Marines|Gotham City Imposters|Serious Sam A Retrospective|Wizorb_trailer|TOH_Hinds|Total War Shogun 2 Samurai Reveal|YS The Oath in Felghana|DiRT Showdown|Revelations 2012|Avernum_Escape_From_the_Pit_Trailer|Max Payne 3|Noitu Love 2 Devolution|McGuffins Curse Tailer|Revelations 2012 Battlegrounds Tutorial|McGuffins Curse Tailer HD2|Resident Evil Operation Raccoon City|AS2 Conscription|Offsrping Fling|Sleeping Dogs Driving Vignette|Orion Dino Beatdown Vid Doc World of Hurt|Dead Hungry Diner Gameplay|Ravaged Trailed|Metro Last Light|Blackwells Asylum|Red Orchestra 2 GOTY Dev Diary|Plutonic Repulse|The White Laboratory Traiiler|Dead Hungry Diner Patch Featurette|Dead Hungry Diner Zen Master Guide|PAM Abandoned Sawmill|Dark Eye Story ENG|Pro Cycling Manager 2012|Dark Eye Story DE|Meet the Pyro|Team Fortress 2: Meet the Pyro|E3 Build|Death to Spies 3|TrackMania Nations Forever|Rugby League Live 3 Academy|Zombie Driver|Dizzel|Hegemony Gold: Wars of Ancient Greece|Atooms to Moolecules|DIVO|Plutonic Repulse|MilitAnt|Blackwells Asylum|RPG Maker VX Ace Lite|Bad Bots: Challenges|TorqueL prototype 2013.03 @ E3|BeamNG.drive Techdemo|SKILL|Divine Souls)\b/i;
  3.  
  4. var PACKAGE_ID_REGEX = /javascript:\s*RemoveFreeLicense\s*\(\s*(\d+)/;
  5. var REMOVE_LICENSE_API = "/account/removelicense";
  6. var RUN_ON_PAGE = "https://store.steampowered.com/account/";
  7.  
  8. if (location.href !== RUN_ON_PAGE) {
  9. if (confirm("You're not on your licenses page, dummy. Go there now?")) {
  10. location.assign(RUN_ON_PAGE);
  11. }
  12. return;
  13. }
  14.  
  15. var idsToRemove = [];
  16.  
  17. var rows;
  18. var licensesTable = document.getElementById("licenses");
  19. var packageId;
  20.  
  21. if (licensesTable && window.g_sessionID) {
  22. licensesTable = licensesTable.getElementsByClassName("account_table")[0];
  23. rows = licensesTable.rows;
  24.  
  25. for (var i = 0, l = rows.length; i < l; i++) {
  26. if (NUKE_REGEX.test(rows[i].cells[0].textContent)) {
  27. packageId = PACKAGE_ID_REGEX.exec(rows[i].cells[1].innerHTML);
  28.  
  29. if (packageId !== null) {
  30. idsToRemove.push(packageId[1]);
  31. }
  32. }
  33. }
  34.  
  35. function removePackageAndQueueNext(packages, index) {
  36. if (index >= packages.length) {
  37. console.log("Packages removed.");
  38. return; // done
  39. }
  40.  
  41. var parameters = "?sessionid=" + encodeURIComponent(g_sessionID) + "&packageid=" + encodeURIComponent(packages[index]);
  42.  
  43. var xhr = new XMLHttpRequest();
  44. xhr.open("HEAD", REMOVE_LICENSE_API + parameters, true);
  45. xhr.onreadystatechange = function () {
  46. if (this.readyState === 4) {
  47. console.log("Removed package %d/%d", index + 1, packages.length);
  48. removePackageAndQueueNext(packages, index + 1);
  49. }
  50. };
  51. xhr.send();
  52. }
  53.  
  54. // Kick off the first request
  55. if (idsToRemove.length > 0) {
  56. removePackageAndQueueNext(idsToRemove, 0);
  57. }
  58. }
  59. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement