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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        * 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": [
                ""
            ]
        }
    ]
}