Tesla VIN finder

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

Qu'est-ce que Tesla VIN finder ?

Tesla VIN finder est une extension Chrome développée par http://progresso-ict.nl, et sa fonction principale est "Find out if Tesla has assigned a VIN to your order!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tesla VIN finder

Téléchargez les fichiers d'extension Tesla VIN finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Tesla VIN finder Tesla VIN finder
ID cjhgdbmohmlomkjgbgkcbknncblpfanf
URL Officiel https://chrome.google.com/webstore/detail/tesla-vin-finder/cjhgdbmohmlomkjgbgkcbknncblpfanf
Description Find out if Tesla has assigned a VIN to your order!
Taille du Fichier 78.11 KB
Nombre d'Installations 20,596
Version Actuelle 0.7.0.0
Dernière Mise à Jour 2020-06-12
Date de Publication 2020-06-12
Évaluation 4.43/5 Total 14 Évaluations
Développeur http://progresso-ict.nl
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}