金币191
积分412
注册时间2019-8-18
最后登录2024-11-7
|
(function()
{
if( location.href.match( /^https:\/\/store\.steampowered\.com\/account\/licenses\/?$/ ) === null )
{
alert( '请在Steam帐号明细页面运行这些代码: https://store.steampowered.com/account/licenses/' );
window.location = 'https://store.steampowered.com/account/licenses/';
return;
}
var freePackages =
[
//本体
478907, // Apoc Runner
478318, // Everlasting Guilt Demo
477934, // BoxxyQuest: The Gathering Storm
477911, // Keysight Demo
477709, // Bubble Bounce Demo
477688, // PIGROMANCE Demo
477445, // RONY - Rise Of New York Demo
477139, // A-Star Theft Demo
476744, // 90 Minute Fever
476565, // Belongings Demo
476481, // Mighty Fling Demo
476455, // 八般武艺 MAVR3D
476350, // Ameline and the Ultimate Burger Demo
476208, // Influent
475855, // Attack of the Gigant Zombie vs Unity chan Demo
475653, // Super Glitter Rush Demo
475483, // MIND SWITCH
475470, // Unfortunate Spacemen
475445, // OhShape Demo
475401, // Limiter! Demo
475390, // Block Breaker Ninja Demo
475321, // Simply Puzzles: Junctions Demo
475093, // Chaos Caves Demo
475029, // DreamFly
475027, // Polyrun
474927, // LOGistICAL: Earth Demo
474895, // The Unbeatable Path Demo
474791, // Curved Space Demo
474753, // Fractal Chicken
474624, // Winter Polaris C97 Drama CD
474508, // Post Scriptum CTG: Collectible Token Game
474430, // 鲸走:前篇 Demo
474244, // VectorWave
474230, // Ascendant
474220, // Host Demo
474150, // Ramayana
474112, // Blue Boy: Bleeding Out Demo
474087, // AccidentHouse Demo
473893, // Spiritfarer Demo
473873, // Fourzy Demo
473861, // C. Kane
473817, // Down The Hole Demo
473605, // SoulElegy
473539, // Student Union Demo
472724, // Lockdown
472571, // コモラ・リアルワールドエスケープ
472421, // lost cube Demo
472357, // Faceted Flight
472352, // Squirt's Adventure
472323, // RaidTitans Demo
472320, // Story
472307, // Downtown Drift
472025, // Brinko
471982, // 时间刺客 Demo
471952, // Sharecare YOU Demo
471847, // Ego In A Coma (自我、状態、昏睡。)
471786, // Unity Testing Grounds Demo
471675, // Retrograde Arena
471443, // Bug Blast
471419, // Havoc Runner Demo
471391, // Alien Defense Unit Demo
471222, // Hakoniwa Sumo
471179, // Midnight Renegade
471176, // Kitty Rescue
470992, // Hope of humanity
470967, // VRWorkout
470890, // 瘟疫战争 Demo
470823, // Transpire Demo
470811, // 人格面具:陰影面積
470783, // Project Senko
470595, // Crystal Story: The Hero and the Evil Witch Demo
470577, // 画江湖之杯莫停
470366, // Girabox Demo
470357, // 12 Hours to Die
470347, // Four Kings One War
470313, // Lone King
470264, // AKER FERN
470252, // Homeland: Lay to Rest
470246, // Unsung Kingdom
470217, // The not so silent assassin Demo
470173, // AffordaGolf Online
470154, // Madness Fantasy Demo
469995, // Simply Puzzles: Codewords Demo
469924, // The Running Man
469882, // HIVE Demo
469805, // Solenars Edge Heroes
469644, // Realms of Eternity Demo
469634, // Avoid The Monsters
469570, // A Week In The Cold Demo
469440, // Ritual: Crown of Horns Demo [Prologue]
469381, // Everlasting Guilt Demo
469366, // Core Defense Demo
469357, // MadGuns
469231, // Virus Blast Demo
469000, // Catch The Ball 3
468974, // Gatewalkers (Alpha)
468890, // Half-Life 2: Genry's Great Escape From City 13
468878, // Visciple29er Demo
468843, // From The Grave
39166,//Heroine's Quest: The Herald of Ragnarok
13261,//RACE 07: Andy Priaulx Crowne Plaza Raceway
32032,//Portal 2 Sixense Perceptual Pack
59373,//Penumbra: Necrologue
33694,//Grimm&Episode 1 - A Boy Learns What Fear Is
88162,//Romance of the Three Kingdoms Maker
36561,//Serena
58514,//Voxelized
117526,//Amnesia: Final Revelations
//dlc
85604,//RTK Maker - Face CG “RTK13” Set / 三国志ツクール顔登録素材 『三國志13』セット+シナリオ
21478,//Free to Play免费本体
50861,//Free to Play Soundtrack
21473,//Prime World免费本体
31538,//Prime World - Prime Machine
32287,//Z3TA+ 2 - Polybius 8-bit Game Pack
38085,//Saints Row IV - Reverse Cosplay Pack
72261,//The Secret of Tremendous Corporation免费本体
81026,//The Sources of Tremendous Corporation
47333,//Aura Kingdom免费本体
38820,//Aura Kingdom - Winter Gift
69802,//Fuse免费本体
60341,//Fuse - Free Brute Character Pack
21416,//Elsword免费本体
63207,//Time Tracer's DLC Package
59253,//Vindictus - New User Package
//软件&工具
35063,//Star Swarm Stress Test
74465,//Arma 3 Samples
];
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( 'QQ207742090努力执行中...',
'请耐心等待,如果有错误请无视,请耐心等待脚本加载完毕' );
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( '执行中...',
'加载至 <b>' + loaded + '</b>/' + total + '.' );
}
}
);
}
}()); |
|