A Jira Tracker Extension
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"version": "1.0.3",
"name": "Jira Time Tracker",
"description": "A Jira Tracker Extension",
"default_locale": "en",
"permissions": [
"alarms",
"storage",
"background",
"cookies",
"notifications",
"idle",
"<all_urls>",
"*://*/*",
"http://*/*, https://*/*"
],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Jira Time Tracker",
"default_icon": {
"19": "icons/19.png",
"38": "icons/38.png"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens popup.html"
}
},
"options_page": "options.html",
"offline_enabled": true,
"content_security_policy": "script-src 'self' ; object-src 'self'"
}