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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |