1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {
- "manifest_version": 3,
- "name": "Automa",
- "action": {
- "default_popup": "popup.html",
- "default_icon": "icon-128.png"
- },
- "background": {
- "service_worker": "background.bundle.js",
- "type": "module"
- },
- "icons": {
- "128": "icon-128.png"
- },
- "commands": {
- "open-dashboard": {
- "suggested_key": {
- "default": "Alt+A",
- "mac": "Alt+A"
- },
- "description": "Open the dashboard"
- },
- "element-picker": {
- "suggested_key": {
- "default": "Alt+P",
- "mac": "Alt+P"
- },
- "description": "Open element picker"
- }
- },
- "host_permissions": ["<all_urls>"],
- "content_scripts": [
- {
- "matches": ["<all_urls>"],
- "js": ["contentScript.bundle.js"],
- "run_at": "document_start",
- "match_about_blank": true,
- "all_frames": true
- },
- {
- "matches": [
- "http://localhost/*",
- "*://*.automa.site/*",
- "*://automa.vercel.app/*"
- ],
- "js": ["webService.bundle.js"],
- "run_at": "document_start",
- "all_frames": false
- }
- ],
- "optional_permissions": [
- "cookies",
- "downloads",
- "contextMenus",
- "clipboardRead",
- "notifications"
- ],
- "permissions": [
- "tabs",
- "proxy",
- "alarms",
- "storage",
- "debugger",
- "activeTab",
- "offscreen",
- "webNavigation",
- "unlimitedStorage"
- ],
- "web_accessible_resources": [
- {
- "resources": [
- "/locales/*",
- "/icon-128.png",
- "/elementSelector.css",
- "elementSelector.bundle.js",
- "/Inter-roman-latin.var.woff2"
- ],
- "matches": [
- "*://*/*"
- ]
- }
- ],
- "sandbox": {
- "pages": ["/sandbox.html"]
- }
- }
|