Tesla VIN finder
Find out if Tesla has assigned a VIN to your order!
什麼是Tesla VIN finder?
Tesla VIN finder是由http://progresso-ict.nl開發的Chrome擴展程式,該擴展的主要功能是“Find out if Tesla has assigned a VIN to your order!”。
擴展截圖
下載Tesla VIN finder擴展crx文件
下載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 |
ID | cjhgdbmohmlomkjgbgkcbknncblpfanf |
官方網址 | 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 } |