Unity Asset Store Price Tracker

This extension allows you to track prices of Unity assets

Was ist Unity Asset Store Price Tracker?

Unity Asset Store Price Tracker ist eine Chrome-Erweiterung, die von https://xamin.it entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to track prices of Unity assets".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Unity Asset Store Price Tracker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Unity Asset Store Price Tracker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Unity Asset Store Price Tracker Unity Asset Store Price Tracker
ID obloajgadlgbdhpmcobhhegceipmhhll
Offizielle URL https://chromewebstore.google.com/detail/unity-asset-store-price-t/obloajgadlgbdhpmcobhhegceipmhhll
Beschreibung This extension allows you to track prices of Unity assets
Dateigröße 85.12 KB
Installationsanzahl 1,067
Aktuelle Version 0.1.6
Letztes Update 2023-12-22
Veröffentlichungsdatum 2020-04-30
Bewertung 4.24/5 Insgesamt 21 Bewertungen
Entwickler https://xamin.it
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://xamin.it/privacy-unity.txt
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}