forked from fyyyyy/Toggl-to-Jira-Chrome-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
32 lines (32 loc) · 884 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "Toggl to Jira (FREE)",
"description": "Logs Toggl.com time entries via *log work* to corresponding Jira tasks",
"version": "2.3.3",
"permissions": [
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"https://toggl.com/*/*", "https://atlassian.net/*/*"
],
"icons": {
"32": "toggl2jira_32.png",
"16": "toggl2jira_16.png",
"48": "toggl2jira_48.png",
"128": "toggl2jira_128.png"
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_title": "Log Toggl.com entries to Jira",
"default_popup": "popup.html"
},
"options_page": "options.html",
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["jquery.min.js"]
}],
"manifest_version": 2
}