This commit is contained in:
Sak32009
2024-02-25 16:25:27 +01:00
parent c7efc1d671
commit 0c7c2bbd68
3 changed files with 62 additions and 71 deletions

View File

@@ -1,6 +1,4 @@
# Get Data from Steam / SteamDB
**_Get Data from Steam / SteamDB_** (_ex Get DLC Info from SteamDB_) it is a userscript that extracts all the information needed to generate the list of dlc and achievements in the chosen format, it generates the hashes list of the depots in sha1 to check the integrity and the appmanifest.acf of the Steam games.
# Get Data from Steam / SteamDB (_ex Get DLC Info from SteamDB_)
[forum cs.rin.ru support](https://cs.rin.ru/forum/viewtopic.php?f=29&t=71837)
@@ -21,6 +19,11 @@ Install a userscript from GitHub by clicking on the "RAW" button of the **[page]
1. Go to [https://steamdb.info/app/570/](https://steamdb.info/app/570/) for example.
2. Click on the button at the bottom right of the screen and watch the magic happen.
- **STEAMDB INVENTORY**
1. Go to [https://steamdb.info/app/218620/items/](https://steamdb.info/app/218620/items/) for example.
2. Click on the button at the bottom right of the screen and watch the magic happen.
- **STEAMDB RELATED DLC**
1. Go to [https://steamdb.info/app/570/linked/](https://steamdb.info/app/570/linked/) for example.
@@ -32,12 +35,6 @@ Install a userscript from GitHub by clicking on the "RAW" button of the **[page]
2. Click on "Click to view file hashes".
3. Click on the button at the bottom right of the screen and create sha1 hashes of your game files and upload them here to compare with those in the depot.
- **STEAMDB DEPOTS TO appmanifest.acf**
1. Go to [https://steamdb.info/app/730/depots/](https://steamdb.info/app/730/depots/) for example or [https://steamdb.info/app/730/depots/?branch=public](https://steamdb.info/app/730/depots/?branch=public) to skip step 2.
2. Click on the public branch (it has a blue background).
3. Click on the button at the bottom right of the screen and watch the magic happen.
- **STORE.STEAMPOWERED.COM**
1. Go to [https://store.steampowered.com/app/440900/Conan_Exiles/](https://store.steampowered.com/app/440900/Conan_Exiles/) for example.

View File

@@ -1,9 +1,9 @@
// ==UserScript==
// @name Get Data from Steam / SteamDB
// @namespace sak32009-gaxvyvrguokgtog
// @version 5.3.4
// @version 5.3.5
// @author Sak32009
// @description Get Data from Steam / SteamDB (ex Get DLC Info from SteamDB) it is a userscript that extracts all the information needed to generate the list of dlc and achievements in the chosen format, it generates the hashes list of the depots in sha1 to check the integrity and the appmanifest.acf of the Steam games.
// @description Get Data from Steam / SteamDB (ex Get DLC Info from SteamDB)
// @license MIT
// @homepage https://github.com/Sak32009/GetDataFromSteam-SteamDB
// @homepageURL https://github.com/Sak32009/GetDataFromSteam-SteamDB
@@ -16,9 +16,9 @@
// @match *://store.steampowered.com/app/*
// @require https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js
// @require https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js
// @require https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js
// @require https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js
// @require https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js
// @require https://cdn.jsdelivr.net/npm/jimp@0.22.10/browser/lib/jimp.min.js
// @require https://cdn.jsdelivr.net/npm/jimp@0.22.12/browser/lib/jimp.min.js
// @require https://cdn.jsdelivr.net/npm/fflate@0.8.2/umd/index.min.js
// @require https://cdn.jsdelivr.net/npm/file-saver@2.0.5/dist/FileSaver.min.js
// @connect cdn.cloudflare.steamstatic.com
@@ -26,5 +26,5 @@
// @grant GM_xmlhttpRequest
// @grant unsafeWindow
// @noframes
// @updatedAT Tue, 20 Feb 2024 13:18:13 GMT
// @updatedAT Sun, 25 Feb 2024 15:15:00 GMT
// ==/UserScript==

File diff suppressed because one or more lines are too long