Steam Price Chart

Adds price (sale) history charts for games and other items to the Steam webpages.

什么是Steam Price Chart?

Steam Price Chart是由gingerax开发的Chrome扩展程序,该扩展的主要功能是“Adds price (sale) history charts for games and other items to the Steam webpages.”。

扩展截图

screenshot

下载Steam Price Chart扩展crx文件

下载Steam Price Chart扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        - Price history charts
Easy access to sale history for games, packages, bundles, and more on the Steam webpages.

- Support three regions
United States, China, and EU1*. More regions might be added depending on the demand.

- Support two languages
English and Chinese. More languages might be added depending on the demand.

Install and price history charts will be displayed on the Steam webpages. No further actions and no account needed.


Permissions:
Access to howlongtobeat.com, isthereanydeal.com, and steamspy.com is needed for requesting information, like sale history, for games and other items.
Access to store.steampowered.com is needed for inserting the price chart into the Steam webpages.
Although when adding the extension, the popup says the extension can "read your browsing history", we DO NOT read your browsing history. The permission that permits reading browsing history ("tabs") is only used for reading the URL of the tab.

Privacy Policy:
We don't collect any user data. However, howlongtobeat.com, isthereanydeal.com, and steamspy.com may collect the IP address when we request information for Steam Price Chart. That's the only information that might be collected by the websites we use.

Disclaimer:
We are not associated or affiliated with Steam, Valve, or any of the websites we use.

Source code is available on GitHub:
https://github.com/MaxWang96/Steam-Price-Chart

*EU1 includes Albania, Andorra, Austria, Belgium, Denmark, Finland, France, Germany, Ireland, Liechtenstein, Luxembourg, Macedonia, Netherlands, Sweden, and Switzerland.                    

扩展基本信息

名称 Steam Price Chart Steam Price Chart
ID dbdjojacadfodjhofhmlaomimkgogcmc
官方URL https://chromewebstore.google.com/detail/steam-price-chart/dbdjojacadfodjhofhmlaomimkgogcmc
简介 Adds price (sale) history charts for games and other items to the Steam webpages.
文件大小 195 KB
安装次数 217
当前版本 1.0.2
更新时间 2022-06-20
上架时间 2021-09-11
评分 3.50/5 共2次评分
开发者 gingerax
电子邮箱 [email protected]
付费类型 free
支持的语言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "version": "1.0.2",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/isthereanydeal.com\/*",
        "https:\/\/howlongtobeat.com\/*",
        "https:\/\/steamspy.com\/api.php*",
        "declarativeContent",
        "declarativeNetRequest",
        "storage",
        "tabs"
    ],
    "author": "gingerax",
    "background": {
        "scripts": [
            "js\/background\/init.js",
            "js\/background\/requests.js",
            "js\/background\/background.js"
        ],
        "persistent": false
    },
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "content_scripts": [
        {
            "js": [
                "js\/content\/app.js"
            ],
            "matches": [
                "*:\/\/store.steampowered.com\/app\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/content\/bundle.js"
            ],
            "matches": [
                "*:\/\/store.steampowered.com\/bundle\/*",
                "*:\/\/store.steampowered.com\/sub\/*"
            ],
            "run_at": "document_end"
        },
        {
            "css": [
                "css\/modal.css"
            ],
            "js": [
                "js\/content\/libs\/jquery.min.js",
                "js\/content\/libs\/bootstrap.min.js",
                "js\/content\/libs\/highstock.js",
                "js\/content\/modal.js",
                "js\/content\/globals.js",
                "js\/content\/requests.js",
                "js\/content\/data.js",
                "js\/content\/buttons.js",
                "js\/content\/chart.js",
                "js\/content\/update.js",
                "js\/content\/content.js"
            ],
            "matches": [
                "*:\/\/store.steampowered.com\/app\/*",
                "*:\/\/store.steampowered.com\/bundle\/*",
                "*:\/\/store.steampowered.com\/sub\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/icon_19.png",
            "38": "images\/icon_38.png"
        },
        "default_title": "__MSG_extensionTitle__",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "web_accessible_resources": [
        "images\/icon_16.png",
        "images\/isthereanydeal_icon.svg",
        "images\/howlongtobeat_icon.png"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "howLongToBeat",
                "enabled": true,
                "path": "json\/howLongToBeat.json"
            }
        ]
    }
}