Tesla VIN finder

Find out if Tesla has assigned a VIN to your order!

Tesla VIN finder란 무엇입니까?

Tesla VIN finder은(는) http://progresso-ict.nl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find out if Tesla has assigned a VIN to your order!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Tesla VIN finder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Are you waiting for the VIN of your Tesla to be assigned to your order?

This browser extension reads out the source code of your Tesla account page and detects changes in the VIN assigned to your order. All you have to do is load your account page and we'll do the rest.

- If a VIN is assigned, you'll receive a pop-up window
- It sometimes happens that a VIN is changed. We'll notify you too.
- No VIN found anymore? We'll let you know.

All actions happen as soon as you log in to your account and the page is fully loaded, and no data is stored on our side.                    

확장 프로그램 기본 정보

이름 Tesla VIN finder Tesla VIN finder
ID cjhgdbmohmlomkjgbgkcbknncblpfanf
공식 URL https://chrome.google.com/webstore/detail/tesla-vin-finder/cjhgdbmohmlomkjgbgkcbknncblpfanf
설명 Find out if Tesla has assigned a VIN to your order!
파일 크기 78.11 KB
설치 횟수 20,596
현재 버전 0.7.0.0
최근 업데이트 2020-06-12
출시 날짜 2020-06-12
평점 4.43/5 총 14 개의 평점
개발자 http://progresso-ict.nl
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tesla VIN finder",
    "version": "0.7.0.0",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "description": "Find out if Tesla has assigned a VIN to your order!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tesla.com\/*\/teslaaccount\/*",
                "https:\/\/www.tesla.com\/teslaaccount\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}