{
    "manifest_version": 3,
    "name": "Example Extension",
    "version": "1.0.0",
    "description": "Example Chrome extension",
    "background": {
        "service_worker": "extBackground.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*://*.wikipedia.org/*"
            ],
            "js": [
                "extContentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*://*.wikipedia.org/*"
    ],
    "icons": {
        "16": "assets/icon16.png"
    }
}