{
    "version": "2.0.0",
    "default_locale": "en",
    "manifest_version": 2,
    "name": "C3App",
    "app": {
        "background": {
            "scripts": ["js/background.js"]
        }
    },
    "permissions": [
        "background",
        "storage",
        "unlimitedStorage",
        "system.cpu",
        "system.memory",
        "desktopCapture",
        "fullscreen",
        "overrideEscFullscreen",
        "system.network",
        "contextMenus",
        "alarms",
        "alwaysOnTopWindows",
        "idle",
        "identity",
        "identity.email",
        "notifications",
        "<all_urls>",
        "system.display",
        "audioCapture",
        "videoCapture",
        "webview",
        {
            "fileSystem": ["write"]
        }
    ],
    "storage": {
        "managed_schema": "schema.json"
    },
    "icons": {
        "16": "icons/icon16.png",
        "48": "icons/icon48.png",
        "128": "icons/icon128.png"
    },
    "webview": {
        "partitions": [
            {
                "name": "trustedWebView",
                "accessible_resources": ["*.html*", "*.js", "*.css", "*.woff2", "*.mp3", "*.png", "*.svg"]
            }
        ]
    }
}
