{ "manifest_version": 3, "name": "Jira Feedback", "version": "1.0", "description": "Submit feedback directly to Jira with screenshots and annotations", "permissions": [ "storage", "activeTab", "desktopCapture", "notifications", "scripting", "tabs" ], "host_permissions": [ "https://*.atlassian.net/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "assets/icons/icon16.png", "48": "assets/icons/icon48.png", "128": "assets/icons/icon128.png" } }, "icons": { "16": "assets/icons/icon16.png", "48": "assets/icons/icon48.png", "128": "assets/icons/icon128.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "web_accessible_resources": [{ "resources": [ "editor.html", "js/*", "styles/*", "assets/*" ], "matches": [""] }], "content_scripts": [ { "matches": [""], "js": ["content.js"], "css": ["content.css"] } ], "background": { "service_worker": "background.js" } }