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 - это расширение Chrome, разработанное https://xamin.it, и его основная функция - "This extension allows you to track prices of Unity assets".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Unity Asset Store Price Tracker

Скачайте файлы расширений 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": [
                ""
            ]
        }
    ]
}