BMW MyGarage Chrome Trick

Chrome trick to expose additional vehicle data.

Apa itu BMW MyGarage Chrome Trick?

BMW MyGarage Chrome Trick adalah ekstensi Chrome yang dikembangkan oleh fdfranklin06, dan fitur utamanya adalah "Chrome trick to expose additional vehicle data.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi BMW MyGarage Chrome Trick

Unduh file ekstensi BMW MyGarage Chrome Trick dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama BMW MyGarage Chrome Trick BMW MyGarage Chrome Trick
ID lbhlbodakahplgnfbggcjajoeodfpfon
URL Resmi https://chromewebstore.google.com/detail/bmw-mygarage-chrome-trick/lbhlbodakahplgnfbggcjajoeodfpfon
Deskripsi Chrome trick to expose additional vehicle data.
Ukuran File 14.3 KB
Jumlah Instalasi 793
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2022-11-13
Tanggal Publikasi 2022-11-09
Penilaian 5.00/5 Total 2 Penilaian
Pengembang fdfranklin06
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}