JiraFeedback/manifest.json
2025-01-23 23:04:49 +05:30

53 lines
1.1 KiB
JSON

{
"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": ["<all_urls>"]
}],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"css": ["content.css"]
}
],
"background": {
"service_worker": "background.js"
}
}