{
    "__chrome|opera|edge__manifest_version": 3,
    "__firefox__manifest_version": 2,
    "name": "web.site",
    "version": "0.0.0",
    "icons": {
        "16": "assets/icons/favicon-16.png",
        "32": "assets/icons/favicon-32.png",
        "48": "assets/icons/favicon-48.png",
        "128": "assets/icons/favicon-128.png"
    },
    "description": "web.site",
    "homepage_url": "https://web.site",
    "short_name": "web.site",
    "__dev__host_permissions": [
        "*://*.web.site/*"
    ],
    "__prod__host_permissions": [
        "https://*.web.site/*"
    ],
    "__chrome|opera|edge|dev__content_security_policy": {
        "extension_pages": "script-src 'self' http://localhost:8097; object-src 'self'"
    },
    "__chrome|opera|edge|prod__content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "__firefox|dev__content_security_policy": "script-src 'self' http://localhost:8097; object-src 'self'",
    "__firefox|prod__content_security_policy": "script-src 'self'; object-src 'self'",
    "__chrome|firefox__author": "abhijithvijayan",
    "__opera__developer": {
        "name": "abhijithvijayan"
    },
    "__firefox__applications": {
        "gecko": {
            "id": "{754FB1AD-CC3B-4856-B6A0-7786F8CA9D17}",
            "strict_min_version": "52.0"
        }
    },
    "__chrome__minimum_chrome_version": "88",
    "__opera__minimum_opera_version": "74",
    "background": {
        "scripts": [
            "js/background.bundle.js"
        ],
        "__chrome|opera__persistent": false
    },
    "content_scripts": [{
            "matches": [
                "http://web.site/*",
                "https://web.site/*"
            ],
            "js": [
                "js/contentScript.bundle.js"
            ]
        }]
}
