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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}