123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "manifest_version": 2,
- "name": "Automa",
- "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": [
- "<all_urls>"
- ],
- "js": [
- "contentScript.bundle.js"
- ],
- "all_frames": true
- },
- {
- "matches": [
- "http://localhost/*",
- "*://*.automa.site/*",
- "*://automa.vercel.app/*"
- ],
- "js": [
- "webService.bundle.js"
- ],
- "all_frames": false
- }
- ],
- "optional_permissions": [
- "clipboardRead",
- "downloads",
- "contextMenus"
- ],
- "permissions": [
- "tabs",
- "proxy",
- "alarms",
- "storage",
- "debugger",
- "webNavigation",
- "unlimitedStorage",
- "<all_urls>"
- ],
- "web_accessible_resources": [
- "/elementSelector.css",
- "/Inter-roman-latin.var.woff2",
- "/locales/*",
- "elementSelector.bundle.js"
- ]
- }
|