Carbly VIN Scanner Extension

Detect VIN numbers to automatically send to Carbly VIN Scanner

Carbly VIN Scanner Extension là gì?

Carbly VIN Scanner Extension là một tiện ích mở rộng Chrome được phát triển bởi Carbly, và tính năng chính của nó là "Detect VIN numbers to automatically send to Carbly VIN Scanner".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Carbly VIN Scanner Extension

Tải xuống các tệp mở rộng Carbly VIN Scanner Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        For licensed auto dealers.  Carbly is a world-class vehicle appraisal tool - We have partnered with Black Book®, Manheim Market Report, Kelley Blue Book®, CARFAX™, AutoCheck, EDGE Pipeline, Galves and J.D. Power Values (formerly NADA Official Used Car Guide®) to bring you fast and accurate vehicle appraisals. Carbly has all the data that you need to avoid costly errors while maximizing profit on every transaction.

The Carbly Browser Extension allows you to see vehicle pricing and market data wherever you come across a VIN number in your browser.  Quickly see appraisal data, save vehicles, and much more.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Carbly VIN Scanner Extension Carbly VIN Scanner Extension
ID hpodldbdjhamlalomidlimbfbaimofmh
URL Chính Thức https://chromewebstore.google.com/detail/carbly-vin-scanner-extens/hpodldbdjhamlalomidlimbfbaimofmh
Mô tả Detect VIN numbers to automatically send to Carbly VIN Scanner
Kích Thước Tệp 325 KB
Số Lần Cài Đặt 922
Phiên Bản Hiện Tại 0.16.0
Cập Nhật Lần Cuối 2023-09-13
Ngày Phát Hành 2021-04-21
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Carbly
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://getcarbly.com
URL Trang Trợ Giúp https://getcarbly.com/support/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Carbly VIN Scanner Extension",
    "version": "0.16.0",
    "description": "Detect VIN numbers to automatically send to Carbly VIN Scanner",
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_title": "Carbly",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/carbly_16.png",
        "32": "icons\/carbly_32.png",
        "48": "icons\/carbly_48.png",
        "128": "icons\/carbly_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "default-src 'self'; script-src 'self'"
    },
    "content_scripts": [
        {
            "js": [
                "parser.js"
            ],
            "world": "MAIN",
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/localhost\/*",
                "*:\/\/web.getcarbly.com\/*",
                "*:\/\/web-staging.getcarbly.com\/*",
                "*:\/\/uat.getcarbly.com\/*",
                "*:\/\/mail.google.com\/*"
            ]
        },
        {
            "js": [
                "content.js"
            ],
            "world": "ISOLATED",
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/localhost\/*",
                "*:\/\/web.getcarbly.com\/*",
                "*:\/\/web-staging.getcarbly.com\/*",
                "*:\/\/uat.getcarbly.com\/*",
                "*:\/\/mail.google.com\/*"
            ]
        }
    ]
}