Unity Asset Store Price Tracker

This extension allows you to track prices of Unity assets

什么是Unity Asset Store Price Tracker?

Unity Asset Store Price Tracker是由https://xamin.it开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to track prices of Unity assets”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Unity Asset Store Price Tracker扩展crx文件

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

扩展使用说明

                        * Price History charts
Detailed Price History charts for Unity3D assets.

No account needed. Just install and start saving money.

This extension does not add any browser buttons. You can access and set it up on any Unity asset page.

We follow Chrome's minimum permissions policy and only request the following permissions:
 
- Access to price-tracker-mocha.now.sh: needed for communication with our servers to provide the extension with price history data.
- Access to assetstore.unity.com/packages/: Required to embed our price history graph directly on Unity Asset Store product pages.                    

扩展基本信息

名称 Unity Asset Store Price Tracker Unity Asset Store Price Tracker
ID obloajgadlgbdhpmcobhhegceipmhhll
官方URL https://chromewebstore.google.com/detail/unity-asset-store-price-t/obloajgadlgbdhpmcobhhegceipmhhll
简介 This extension allows you to track prices of Unity assets
文件大小 85.12 KB
安装次数 1,067
当前版本 0.1.6
更新时间 2023-12-22
上架时间 2020-04-30
评分 4.24/5 共21次评分
开发者 https://xamin.it
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://xamin.it/privacy-unity.txt
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unity Asset Store Price Tracker",
    "version": "0.1.6",
    "description": "This extension allows you to track prices of Unity assets",
    "manifest_version": 3,
    "icons": {
        "128": "icon128.png"
    },
    "host_permissions": [
        "https:\/\/assetstore.unity.com\/packages\/*",
        "https:\/\/price-tracker-mocha.now.sh\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/assetstore.unity.com\/packages\/*"
            ],
            "js": [
                "dependencies\/chart.min.js",
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "128": "icon128.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "dependencies\/chart.min.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}