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
官方網址 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": [
                ""
            ]
        }
    ]
}