BMW MyGarage Chrome Trick

Chrome trick to expose additional vehicle data.

Qu'est-ce que BMW MyGarage Chrome Trick ?

BMW MyGarage Chrome Trick est une extension Chrome développée par fdfranklin06, et sa fonction principale est "Chrome trick to expose additional vehicle data.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension BMW MyGarage Chrome Trick

Téléchargez les fichiers d'extension BMW MyGarage Chrome Trick au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom BMW MyGarage Chrome Trick BMW MyGarage Chrome Trick
ID lbhlbodakahplgnfbggcjajoeodfpfon
URL Officiel https://chromewebstore.google.com/detail/bmw-mygarage-chrome-trick/lbhlbodakahplgnfbggcjajoeodfpfon
Description Chrome trick to expose additional vehicle data.
Taille du Fichier 14.3 KB
Nombre d'Installations 793
Version Actuelle 1.0.1
Dernière Mise à Jour 2022-11-13
Date de Publication 2022-11-09
Évaluation 5.00/5 Total 2 Évaluations
Développeur fdfranklin06
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}