Unity Asset Store Price Tracker

This extension allows you to track prices of Unity assets

Apa itu Unity Asset Store Price Tracker?

Unity Asset Store Price Tracker adalah ekstensi Chrome yang dikembangkan oleh https://xamin.it, dan fitur utamanya adalah "This extension allows you to track prices of Unity assets".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Unity Asset Store Price Tracker

Unduh file ekstensi Unity Asset Store Price Tracker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Unity Asset Store Price Tracker Unity Asset Store Price Tracker
ID obloajgadlgbdhpmcobhhegceipmhhll
URL Resmi https://chromewebstore.google.com/detail/unity-asset-store-price-t/obloajgadlgbdhpmcobhhegceipmhhll
Deskripsi This extension allows you to track prices of Unity assets
Ukuran File 85.12 KB
Jumlah Instalasi 1,067
Versi Saat Ini 0.1.6
Terakhir Diperbarui 2023-12-22
Tanggal Publikasi 2020-04-30
Penilaian 4.24/5 Total 21 Penilaian
Pengembang https://xamin.it
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://xamin.it/privacy-unity.txt
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}