VIN Analytics for Chrome

Retrieves the factory Porsche Build Sheet from a VIN that is detected on a webpage.

Τι είναι το VIN Analytics for Chrome;

Το VIN Analytics for Chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://vinanalytics.com, και η κύρια λειτουργία του είναι "Retrieves the factory Porsche Build Sheet from a VIN that is detected on a webpage.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης VIN Analytics for Chrome

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

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

                        Welcome to the official VIN Analytics Chrome Extension!

No more copying and pasting VIN numbers - now it's easier than ever to decode your Porsche VIN numbers into their factory Build Sheets.  The extension works seamlessly for you while you hunt for your next vehicle purchase.

Simply press the Extensions button and it will automatically detect the VIN number on the page you're currently viewing. It will then open a new tab (or page - your choice!) with the corresponding Build Sheet.

If you have any questions or feedback, please feel free to reach out - enjoy!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα VIN Analytics for Chrome VIN Analytics for Chrome
ID chcljfjdinfifgkbmmdgnbbcoglahode
Επίσημο URL https://chromewebstore.google.com/detail/vin-analytics-for-chrome/chcljfjdinfifgkbmmdgnbbcoglahode
Περιγραφή Retrieves the factory Porsche Build Sheet from a VIN that is detected on a webpage.
Μέγεθος Αρχείου 869 KB
Αριθμός Εγκαταστάσεων 1,238
Τρέχουσα Έκδοση 1.6
Τελευταία Ενημέρωση 2021-03-16
Ημερομηνία Δημοσίευσης 2018-11-08
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://vinanalytics.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://vinanalytics.com/chrome
Διεύθυνση URL της Σελίδας Βοήθειας https://vinanalytics.com/contact/
URL της Σελίδας Πολιτικής Απορρήτου https://vinanalytics.com/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VIN Analytics for Chrome",
    "short_name": "VIN Analytics Quick Lookup Tool",
    "commands": {
        "trigger": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+K"
            },
            "description": "Trigger an Automatic Build Sheet Lookup for a Porsche VIN."
        }
    },
    "version": "1.6",
    "manifest_version": 2,
    "description": "Retrieves the factory Porsche Build Sheet from a VIN that is detected on a webpage.",
    "icons": {
        "16": "images\/VA-APP-ICON16.png",
        "32": "images\/VA-APP-ICON32.png",
        "48": "images\/VA-APP-ICON48.png",
        "128": "images\/VA-APP-ICON128.png"
    },
    "options_page": "options.html",
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/vinanalytics.com\/*",
                "https:\/\/nationalpreownedporsche.com\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/nationalpreownedporsche.com\/*"
            ],
            "js": [
                "npp-content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "*.js"
    ]
}