头图:https://cdn.naraku.cn/imgs/steam-0.jpg
摘要:不知道好不好玩,不过先嫖了再说 ~

领取方法

  • 进入 Steam官网 并登陆账号
  • 点击右上角自己账号 > 账户明细 > 查看许可和产品序列号激活

一键白嫖Steam - 图1

  • 进入该页面后,按F12打开控制台,点击Console

一键白嫖Steam - 图2

  • 在空白处输入以下代码:

    1. (function()
    2. {
    3. if( location.href.match( /^https:\/\/store\.steampowered\.com\/account\/licenses\/?$/ ) === null ){
    4. alert( '请在Steam帐号明细页面运行这些代码: https://store.steampowered.com/account/licenses/' );
    5. window.location = 'https://store.steampowered.com/account/licenses/';
    6. return;
    7. }
    8. var freePackages =
    9. [
    10. //本体
    11. 39166,//Heroine's Quest: The Herald of Ragnarok
    12. 13261,//RACE 07: Andy Priaulx Crowne Plaza Raceway
    13. 32032,//Portal 2 Sixense Perceptual Pack
    14. 59373,//Penumbra: Necrologue
    15. 33694,//Grimm&Episode 1 - A Boy Learns What Fear Is
    16. 88162,//Romance of the Three Kingdoms Maker
    17. 36561,//Serena
    18. 58514,//Voxelized
    19. 117526,//Amnesia: Final Revelations
    20. //dlc
    21. 85604,//RTK Maker - Face CG “RTK13” Set / 三国志ツクール顔登録素材 『三國志13』セット+シナリオ
    22. 21478,//Free to Play免费本体
    23. 50861,//Free to Play Soundtrack
    24. 21473,//Prime World免费本体
    25. 31538,//Prime World - Prime Machine
    26. 32287,//Z3TA+ 2 - Polybius 8-bit Game Pack
    27. 38085,//Saints Row IV - Reverse Cosplay Pack
    28. 72261,//The Secret of Tremendous Corporation免费本体
    29. 81026,//The Sources of Tremendous Corporation
    30. 47333,//Aura Kingdom免费本体
    31. 38820,//Aura Kingdom - Winter Gift
    32. 69802,//Fuse免费本体
    33. 60341,//Fuse - Free Brute Character Pack
    34. 21416,//Elsword免费本体
    35. 63207,//Time Tracer's DLC Package
    36. 59253,//Vindictus - New User Package
    37. //软件&工具
    38. 35063,//Star Swarm Stress Test
    39. 74465,//Arma 3 Samples
    40. //后续更新
    41. 21101, // DiRT Showdown Demo
    42. 21102, // Rayman Origins Demo
    43. 21103, // iBomber Defense Pacific Demo
    44. 21104, // Men Of War: Assault Squad GOTY Demo
    45. 21105, // Bang Bang Racing Demo
    46. 21106, // Sine Mora Demo
    47. 21107, // Noitu Love 2 Devolution Demo
    48. 21108, // Waveform Demo
    49. 21109, // Ridge Racer™ Unbounded Demo
    50. 21110, // Hegemony Gold: Wars of Ancient Greece
    51. 21111, // Rocksmith Demo
    52. 21113, // Binary Domain Demo
    53. 21114, // Sniper Elite V2 Demo
    54. 21115, // Blades of Time Demo
    55. 21117, // A Valley Without Wind Demo
    56. 21118, // F1 2012 Demo
    57. 21119, // Magical Diary Demo
    58. 21120, // The Dream Machine Demo
    59. 21121, // Hell Yeah! Demo
    60. 21122, // A Virus Named Tom Demo
    61. 21123, // Splice Demo
    62. 21124, // Atooms to Moolecules
    63. 21125, // BeatBuddy Demo
    64. 21126, // DIVO
    65. 21127, // Imagine Earth Demo
    66. 21128, // MilitAnt
    67. 21129, // Plutonic Repulse
    68. 21130, // The White Laboratory Demo
    69. 21131, // Blackwell's Asylum
    70. 21132, // Magic 2014 Demo
    71. 21133, // Sid Meier's Civilization V: Gods & Kings Demo
    72. 21134, // Gratuitous Tank Battles Demo
    73. 21135, // Tiny and Big: Grandpa's Leftovers Demo
    74. 21136, // KungFu Strike Demo
    75. 21137, // Adventures of Shuggy Demo
    76. 21138, // E.Y.E: Divine Cybermancy Demo
    77. 21139, // Orcs Must Die! 2 Demo
    78. 21140, // The Book of Unwritten Tales Demo
    79. 21141, // Sleeping Dogs™ Demo
    80. 21142, // Damage Inc Demo
    81. 21143, // Gateways Demo
    82. 21144, // Football Manager 2013 Demo
    83. 21145, // XCOM: Enemy Unknown Demo
    84. 21146, // Transcripted Demo
    85. 21147, // Intrusion 2 Demo
    86. 21148, // Din's Curse Demo
    87. 21149, // Democracy 2 Demo
    88. 21150, // Ys Origin Demo
    89. 21151, // Ether Vapor Remaster Demo
    90. ];
    91. var ownedPackages = {};
    92. jQuery( '.account_table a' ).each( function( i, el ){
    93. var match = el.href.match( /javascript:RemoveFreeLicense\( ([0-9]+), '/ );
    94. if( match !== null ){
    95. ownedPackages[ +match[ 1 ] ] = true;
    96. }
    97. } );
    98. var i = 0,
    99. loaded = 0,
    100. package = 0,
    101. total = freePackages.length,
    102. modal = ShowBlockingWaitDialog( '努力执行中...',
    103. '请耐心等待,如果有错误请无视,请耐心等待脚本加载完毕' );
    104. for( ; i < total; i++ ){
    105. package = freePackages[ i ];
    106. if( ownedPackages[ package ] ){
    107. loaded++;
    108. continue;
    109. }
    110. jQuery.post(
    111. '//store.steampowered.com/checkout/addfreelicense',
    112. {
    113. action: 'add_to_cart',
    114. sessionid: g_sessionID,
    115. subid: package
    116. }
    117. ).always( function( )
    118. {
    119. loaded++;
    120. modal.Dismiss();
    121. if( loaded >= total ){
    122. location.reload();
    123. }
    124. else{
    125. modal = ShowBlockingWaitDialog( '执行中...',
    126. '加载至 <b>' + loaded + '</b>/' + total + '.' );
    127. }
    128. }
    129. );
    130. }
    131. }());
  • 等待执行,最终效果

一键白嫖Steam - 图3