Unity Asset Store Price Tracker

This extension allows you to track prices of Unity assets

What is Unity Asset Store Price Tracker?

Unity Asset Store Price Tracker is a Chrome extension developed by https://xamin.it, and its main feature is "This extension allows you to track prices of Unity assets".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Unity Asset Store Price Tracker Extension CRX File

Download Unity Asset Store Price Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        * 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.                    

Extension Basic Information

Name Unity Asset Store Price Tracker Unity Asset Store Price Tracker
ID obloajgadlgbdhpmcobhhegceipmhhll
Official URL https://chromewebstore.google.com/detail/unity-asset-store-price-t/obloajgadlgbdhpmcobhhegceipmhhll
Description This extension allows you to track prices of Unity assets
File Size 85.12 KB
Installation Count 1,067
Current Version 0.1.6
Last Updated 2023-12-22
Publish Date 2020-04-30
Rating 4.24/5 Total 21 Ratings
Developer https://xamin.it
Email [email protected]
Payment Type free
Privacy Policy Page URL https://xamin.it/privacy-unity.txt
Supported Languages 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": [
                ""
            ]
        }
    ]
}