Tesla VIN finder

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

Tesla VIN finder là gì?

Tesla VIN finder là một tiện ích mở rộng Chrome được phát triển bởi http://progresso-ict.nl, và tính năng chính của nó là "Find out if Tesla has assigned a VIN to your order!".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tesla VIN finder

Tải xuống các tệp mở rộng Tesla VIN finder 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

                        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.                    

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

Tên Tesla VIN finder Tesla VIN finder
ID cjhgdbmohmlomkjgbgkcbknncblpfanf
URL Chính Thức https://chrome.google.com/webstore/detail/tesla-vin-finder/cjhgdbmohmlomkjgbgkcbknncblpfanf
Mô tả Find out if Tesla has assigned a VIN to your order!
Kích Thước Tệp 78.11 KB
Số Lần Cài Đặt 20,596
Phiên Bản Hiện Tại 0.7.0.0
Cập Nhật Lần Cuối 2020-06-12
Ngày Phát Hành 2020-06-12
Đánh Giá 4.43/5 Tổng số 14 Đánh Giá
Nhà Phát Triển http://progresso-ict.nl
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}