Tesla VIN finder

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

Tesla VIN finder क्या है?

Tesla VIN finder http://progresso-ict.nl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find out if Tesla has assigned a VIN to your order!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tesla VIN finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}