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是由https://vinanalytics.com開發的Chrome擴展程式,該擴展的主要功能是“Retrieves the factory Porsche Build Sheet from a VIN that is detected on a webpage.”。

擴展截圖

screenshot

下載VIN Analytics for Chrome擴展crx文件

下載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
官方網址 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"
    ]
}