BMW MyGarage Chrome Trick

Chrome trick to expose additional vehicle data.

What is BMW MyGarage Chrome Trick?

BMW MyGarage Chrome Trick is a Chrome extension developed by fdfranklin06, and its main feature is "Chrome trick to expose additional vehicle data.".

Extension Screenshots

screenshot

Download BMW MyGarage Chrome Trick Extension CRX File

Download BMW MyGarage Chrome Trick extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name BMW MyGarage Chrome Trick BMW MyGarage Chrome Trick
ID lbhlbodakahplgnfbggcjajoeodfpfon
Official URL https://chromewebstore.google.com/detail/bmw-mygarage-chrome-trick/lbhlbodakahplgnfbggcjajoeodfpfon
Description Chrome trick to expose additional vehicle data.
File Size 14.3 KB
Installation Count 793
Current Version 1.0.1
Last Updated 2022-11-13
Publish Date 2022-11-09
Rating 5.00/5 Total 2 Ratings
Developer fdfranklin06
Email [email protected]
Payment Type free
Supported Languages 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": [
                ""
            ]
        }
    ]
}