{ "manifest_version": 2, "name": "Automa", "browser_specific_settings": { "gecko": { "strict_min_version": "91.1.0" } }, "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon-128.png" }, "icons": { "128": "icon-128.png" }, "commands": { "open-dashboard": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "MacCtrl+Shift+A" }, "description": "Open the Automa dashboard" } }, "content_scripts": [ { "matches": [ "" ], "js": [ "contentScript.bundle.js" ], "all_frames": true }, { "matches": [ "*://*.automa.site/*", "*://automa.vercel.app/*" ], "js": [ "webService.bundle.js" ], "all_frames": false } ], "optional_permissions": [ "clipboardRead", "downloads", "notifications" ], "permissions": [ "tabs", "proxy", "menus", "alarms", "storage", "webNavigation", "unlimitedStorage", "" ], "web_accessible_resources": [ "/elementSelector.css", "/Inter-roman-latin.var.woff2", "/locales/*", "elementSelector.bundle.js" ], "content_security_policy": "script-src 'self' https:; object-src 'self'" }