Tesla VIN finder

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

Τι είναι το Tesla VIN finder;

Το Tesla VIN finder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://progresso-ict.nl, και η κύρια λειτουργία του είναι "Find out if Tesla has assigned a VIN to your order!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tesla VIN finder

Λήψη αρχείων επέκτασης Tesla VIN finder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
}