Steam Market History Cataloger

Indexes your Steam Market transactions to be viewable within the extension and exportable to JSON and CSV.

Steam Market History Catalogerคืออะไร?

Steam Market History Cataloger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Julia และคุณลักษณะหลักของมันคือ "Indexes your Steam Market transactions to be viewable within the extension and exportable to JSON and CSV."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Market History Cataloger

ดาวน์โหลดไฟล์ส่วนขยาย Steam Market History Cataloger ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Steam Market History Cataloger is a Chrome extension used for loading and storing your listings from the Steam Community Market. Steam does not offer this data in a format that is easily consumible for those that need extensive information of their transactions. This tool aims to fulfill that role in a user-friendly way.

Features:
- Loads transactions from the Steam Community Market in any language or currency. Listings are stored to a local database in your browser for use at any time.
- Allows viewing and filtering of all data loaded in a neat and responsive format within the extension.
Transaction data can be exported to JSON and CSV. Data models for JSON can be found below.
- Loads purchase history from your Steam account history. However, this data is not persisted to the extension.
- Allows background loading. Not enabled by default. Enable this option from the preferences page. Loads are polled at an interval of 1 hour.
- History pages at https://steamcommunity.com/market are displayed 100 results per page. More options are provided which allow you to move around your history easier.

* Steam Market History Cataloger is not affiliated with Valve or Steam.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Steam Market History Cataloger Steam Market History Cataloger
ID dhpcikljplaooekklhbjohojbjbinega
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/steam-market-history-cata/dhpcikljplaooekklhbjohojbjbinega
คำอธิบาย Indexes your Steam Market transactions to be viewable within the extension and exportable to JSON and CSV.
ขนาดไฟล์ 667 KB
จำนวนการติดตั้ง 2,742
เวอร์ชันปัจจุบัน 1.1.3
อัปเดตครั้งล่าสุด 2021-03-19
วันที่เผยแพร่ 2020-04-17
คะแนน 4.42/5 รวมทั้งหมด 24 คะแนน
ผู้พัฒนา Julia
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/juliarose/Steam-Market-History-Cataloger
URL หน้าช่วยเหลือ https://github.com/juliarose/Steam-Market-History-Cataloger/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Steam Market History Cataloger",
    "description": "Indexes your Steam Market transactions to be viewable within the extension and exportable to JSON and CSV.",
    "version": "1.1.3",
    "version_name": "1.1.3",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "views\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/steamcommunity.com\/login\/*"
            ],
            "js": [
                "js\/content\/helpers\/utils.js",
                "js\/content\/steamcommunity.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/steamcommunity.com\/market*"
            ],
            "js": [
                "js\/content\/helpers\/injectScript.js",
                "js\/content\/steamcommunity.market.js"
            ],
            "css": [
                "css\/content\/steamcommunity.market.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "js\/content\/injects\/*.js",
        "js\/content\/modules\/*.js",
        "js\/app\/money.js",
        "js\/app\/currency.js"
    ],
    "background": {
        "persistent": true,
        "page": "views\/background.html"
    },
    "permissions": [
        "*:\/\/steamcommunity.com\/*",
        "*:\/\/*.steampowered.com\/*",
        "https:\/\/store.steampowered.com\/account\/history\/",
        "https:\/\/store.steampowered.com\/account\/AjaxLoadMoreHistory\/*",
        "storage",
        "unlimitedStorage"
    ]
}