BMW MyGarage Chrome Trick

Chrome trick to expose additional vehicle data.

Cos'è BMW MyGarage Chrome Trick?

BMW MyGarage Chrome Trick è un'estensione di Chrome sviluppata da fdfranklin06, e la sua funzione principale è "Chrome trick to expose additional vehicle data.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione BMW MyGarage Chrome Trick

Scarica i file di estensione BMW MyGarage Chrome Trick in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome BMW MyGarage Chrome Trick BMW MyGarage Chrome Trick
ID lbhlbodakahplgnfbggcjajoeodfpfon
URL Ufficiale https://chromewebstore.google.com/detail/bmw-mygarage-chrome-trick/lbhlbodakahplgnfbggcjajoeodfpfon
Descrizione Chrome trick to expose additional vehicle data.
Dimensione del File 14.3 KB
Conteggio Installazioni 793
Versione Corrente 1.0.1
Ultimo Aggiornamento 2022-11-13
Data di Pubblicazione 2022-11-09
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore fdfranklin06
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}