{ "manifest_version": 3, "name": "Nexus Browser Pilot", "version": "1.2.0", "minimum_chrome_version": "116", "description": "Bedient den Browser wie ein Mensch – echter Mauszeiger, echte Tastatur, echte Events. Handelt selbstständig; Rückfragen nur im zuschaltbaren Nachfrage-Modus.", "permissions": [ "activeTab", "tabs", "tabGroups", "scripting", "storage", "sidePanel", "alarms", "webNavigation", "debugger" ], "host_permissions": [ "" ], "background": { "service_worker": "dist/background.js", "type": "module" }, "side_panel": { "default_path": "src/sidepanel/index.html" }, "content_scripts": [ { "matches": [""], "js": ["dist/console-hook.js"], "run_at": "document_start", "all_frames": false, "world": "MAIN" }, { "matches": [""], "js": ["dist/content.js"], "run_at": "document_start", "all_frames": false } ], "action": { "default_title": "Nexus Browser Pilot", "default_icon": { "16": "icons/icon16.png", "32": "icons/icon32.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }