v25.12.21.1

This commit is contained in:
Sak32009
2025-12-21 13:10:15 +01:00
parent f84f581036
commit 74ceed8167
6 changed files with 521 additions and 622 deletions

View File

@@ -1,5 +1,3 @@
# v1.0.0
root = true
[*]
@@ -11,9 +9,3 @@ trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 120
[*.py]
indent_size = 4
[*.php]
insert_final_newline = false

View File

@@ -1,5 +1,5 @@
name: "\U0001F41E Bug report"
title: "[BUG]: "
name: 🐞 Bug report
title: '[BUG]: '
description: Report an issue with the "Get Data from Steam / SteamDB" userscript.
labels:
- bug
@@ -74,7 +74,7 @@ body:
id: validations
attributes:
label: Validations
description: "Before submitting the issue, please confirm the following:"
description: 'Before submitting the issue, please confirm the following:'
options:
- label: I have tested the userscript with all browser extensions disabled, except for Tampermonkey or Violentmonkey.
required: true

View File

@@ -1,5 +1,5 @@
name: "\U0001F680 New feature proposal"
title: "[FEATURE]: "
name: 🚀 New feature proposal
title: '[FEATURE]: '
description: Propose a new feature for the "Get Data from Steam / SteamDB" userscript.
labels:
- enhancement

View File

@@ -2,8 +2,6 @@
[forum cs.rin.ru support](https://cs.rin.ru/forum/viewtopic.php?f=29&t=71837)
### **STATUS: DISCONTINUED.**
## Installation
1. Install a userscript manager:

View File

@@ -1,12 +1,12 @@
// ==UserScript==
// @name Get Data from Steam / SteamDB
// @namespace sak32009-gaxvyvrguokgtog
// @version 25.06.27.1
// @version 25.12.21.1
// @author Sak32009
// @description Get Data from Steam / SteamDB (ex Get DLC Info from SteamDB)
// @license MIT
// @copyright Sak32009
// @icon https://steamdb.info/static/logos/192px.png
// @icon https://steamdb.info/static/logos/512px.png
// @homepage https://github.com/Sak32009/GetDataFromSteam-SteamDB
// @homepageURL https://github.com/Sak32009/GetDataFromSteam-SteamDB
// @source github:Sak32009/GetDataFromSteam-SteamDB
@@ -18,14 +18,11 @@
// @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/fflate@0.8.2/umd/index.js
// @require https://cdn.jsdelivr.net/npm/uzip@0.20201231.0/UZIP.js
// @require https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js
// @require https://cdn.jsdelivr.net/npm/long@5.3.2/umd/index.js
// @require https://cdn.jsdelivr.net/npm/protobufjs@7.5.3/dist/minimal/protobuf.min.js
// @require https://cdn.jsdelivr.net/npm/path-browserify-esm@1.0.6/index.js
// @require https://cdn.jsdelivr.net/npm/byte-size@9.0.1/dist/index.js
// @connect cdn.cloudflare.steamstatic.com
// @connect github.com
// @connect raw.githubusercontent.com
// @grant GM_addStyle
// @grant GM_addValueChangeListener
// @grant GM_download
@@ -37,5 +34,5 @@
// @grant window.close
// @run-at document-end
// @noframes
// @updatedAt Fri, 27 Jun 2025 20:20:13 GMT
// @updatedAt Sun, 21 Dec 2025 12:07:37 GMT
// ==/UserScript==

File diff suppressed because one or more lines are too long