BMW MyGarage Chrome Trick

Chrome trick to expose additional vehicle data.

BMW MyGarage Chrome Trick là gì?

BMW MyGarage Chrome Trick là một tiện ích mở rộng Chrome được phát triển bởi fdfranklin06, và tính năng chính của nó là "Chrome trick to expose additional vehicle data.".

Ả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 BMW MyGarage Chrome Trick

Tải xuống các tệp mở rộng BMW MyGarage Chrome Trick 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

                        Chrome trick to show additional information for your vehicle that does not display by default.                    

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

Tên BMW MyGarage Chrome Trick BMW MyGarage Chrome Trick
ID lbhlbodakahplgnfbggcjajoeodfpfon
URL Chính Thức https://chromewebstore.google.com/detail/bmw-mygarage-chrome-trick/lbhlbodakahplgnfbggcjajoeodfpfon
Mô tả Chrome trick to expose additional vehicle data.
Kích Thước Tệp 14.3 KB
Số Lần Cài Đặt 793
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-11-13
Ngày Phát Hành 2022-11-09
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển fdfranklin06
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BMW MyGarage Chrome Trick",
    "description": "Chrome trick to expose additional vehicle data.",
    "version": "1.0.1",
    "manifest_version": 3,
    "action": {
        "default_title": "BMW MyGarage Chrome Trick",
        "default_icon": "icon128.png",
        "icons": {
            "16": "icon16.png",
            "36": "icon36.png",
            "128": "icon128.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "before.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        },
        {
            "run_at": "document_idle",
            "js": [
                "after.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}