Unity Asset Store Price Tracker

This extension allows you to track prices of Unity assets

Unity Asset Store Price Tracker là gì?

Unity Asset Store Price Tracker là một tiện ích mở rộng Chrome được phát triển bởi https://xamin.it, và tính năng chính của nó là "This extension allows you to track prices of Unity assets".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Unity Asset Store Price Tracker

Tải xuống các tệp mở rộng Unity Asset Store Price Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Unity Asset Store Price Tracker Unity Asset Store Price Tracker
ID obloajgadlgbdhpmcobhhegceipmhhll
URL Chính Thức https://chromewebstore.google.com/detail/unity-asset-store-price-t/obloajgadlgbdhpmcobhhegceipmhhll
Mô tả This extension allows you to track prices of Unity assets
Kích Thước Tệp 85.12 KB
Số Lần Cài Đặt 1,067
Phiên Bản Hiện Tại 0.1.6
Cập Nhật Lần Cuối 2023-12-22
Ngày Phát Hành 2020-04-30
Đánh Giá 4.24/5 Tổng số 21 Đánh Giá
Nhà Phát Triển https://xamin.it
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://xamin.it/privacy-unity.txt
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}