(function()
{
if( location.href.match( /^https:\/\/store\.steampowered\.com\/account\/licenses\/?$/ ) === null )
{
alert( 'Please run this on Steam\'s account page details:
https://store.steampowered.com/account/licenses/' );
window.location = '
https://store.steampowered.com/account/licenses/';
return;
}
var freePackages =
[
20095, // Batman Arkham City Trailer
20096, // Lightfish Trailer
20097, // Sequence Launch Trailer
20098, // Sequence How to Play Trailer
20099, // Assassin's Creed Revelations Story Trailer
20100, // Cities XL 2012 Trailer
20101, // Saints Row: The Third Shock and Awesome Trailer
20102, // Sideway New York Trailer
20103, // Worms Crazy Golf Pirate Cave Trailer
20104, // Assassin's Creed Revelations Multiplayer Trailer
20105, // Global Ops: Commando Libya Trailer
20106, // Dungeon Defenders Launch Trailer
20107, // Retribution Tau Commander Trailer
20108, // Airline Tycoon 2 Trailer ESRB
20109, // Airline Tycoon 2 Trailer PEGI
20110, // Call of Duty: Modern Warfare 3 Redemption Trailer
20111, // Waves Trailer
20112, // Take on Helicopters - Ship Rescue
20113, // Take on Helicopters - Tutorial
20114, // Lord of the Rings: War in the North Trailer
20115, // Sequence How to Play Trailer Steam
20116, // SkyDrift Trailer
20117, // The Adventures of Tintin: The Game E3 Trailer
20118, // Orcs Must Die Artifacts of Power Trailer
20119, // The Cursed Crusade Cinematic Trailer
20120, // PC Gamer Digital EP5 Teaser
20121, // Gemini Rue Trailer
20122, // Trine 2 Co-op Trailer
20123, // Ignite Trailer
20124, // Crazy Machines 2 Halloween DLC
20125, // Sniper: Ghost Warrior 2 ESRB
20126, // Sniper: Ghost Warrior 2 Unrated
20127, // Sniper: Ghost Warrior 2 USK
20128, // Sniper: Ghost Warrior 2 PEGI
20129, // Bunch of Heroes - Horror Pack Trailer
20130, // Gemini Rue Trailer wmv
20131, // inMomentum Teaser
20132, // inMomentum Trailer
20133, // Take on Helicopters - Launch Trailer
20134, // Xotic Reviews Trailer
20135, // Memoir '44 Online Trailer English
20136, // Dungeon Defenders Halloween DLC Trailer
20137, // Bloodline Champions Launch Trailer
20138, // Jurassic Park Trailer
20139, // Jurassic Park Behind the Scenes Trailer
20140, // APB Reloaded Trailer
20141, // DC Universe Online Free to Play trailer
20142, // Call of Duty Modern Warfare 3 Strike Package Assault Trailer
20143, // Call of Duty: Modern Warfare 3 Launch Trailer
20144, // SkyDrift: Gladiator Pack Trailer
];
var ownedPackages = {};
jQuery( '.account_table a' ).each( function( i, el )
{
var match = el.href.match( /javascript:RemoveFreeLicense\( ([0-9]+), '/ );
if( match !== null )
{
ownedPackages[ +match[ 1 ] ] = true;
}
} );
var i = 0,
loaded = 0,
package = 0,
total = freePackages.length,
modal = ShowBlockingWaitDialog( 'Executing…',
'Please wait until all requests finish. Ignore all the errors, let it finish.' );
for( ; i < total; i++ )
{
package = freePackages[ i ];
if( ownedPackages[ package ] )
{
loaded++;
continue;
}
jQuery.post(
'//store.steampowered.com/checkout/addfreelicense',
{
action: 'add_to_cart',
sessionid: g_sessionID,
subid: package
}
).always( function( )
{
loaded++;
modal.Dismiss();
if( loaded >= total )
{
location.reload();
}
else
{
modal = ShowBlockingWaitDialog( 'Executing…',
'Loaded <b>' + loaded + '</b>/' + total + '.' );
}
}
);
}
}());