An extension that allows easily log time into the Tempo Jira plugin
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,
"name": "Tempo Time Tracker",
"description": "An extension that allows easily log time into the Tempo Jira plugin",
"version": "0.0.18",
"browser_action": {
"default_icon": "assets/logo_16.png",
"default_popup": "index.html"
},
"background": {
"scripts": [
"backgroundScript.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://app.tempo.io/*"
],
"js": [
"/contentScript.js"
],
"all_frames": true
}
],
"icons": {
"16": "assets/logo_16.png",
"48": "assets/logo_48.png",
"128": "assets/logo_128.png"
},
"permissions": [
"storage",
"activeTab"
]
}