Adds a time tracking button to Gitlab's issue interface
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",
"description": "Adds a time tracking button to Gitlab's issue interface",
"manifest_version": 2,
"name": "gitlab-time-tracking-button",
"version": "1.0.7",
"icons": {
"64": "icons/logo-64.png"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"28": "icons/logo-28.png",
"64": "icons/logo-64.png",
"96": "icons/logo-96.png",
"128": "icons/logo-128.png"
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html"
},
"permissions": [
"tabs",
"storage",
"notifications",
"webRequest"
],
"optional_permissions": [
"https://*/"
]
}