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
公式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
Eメール [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": [
                ""
            ]
        }
    ]
}