-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmanifest.json
35 lines (35 loc) · 926 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
33
34
35
{
"name": "Toggl to Jira (FREE)",
"description": "Logs Toggl.com time entries via *log work* to corresponding Jira tasks",
"version": "2.3.3",
"permissions": [
"declarativeNetRequest",
"scripting",
"storage",
"tabs",
"webRequest"
],
"host_permissions": [
"https://toggl.com/*/*",
"https://atlassian.net/*/*"
],
"icons": {
"32": "toggl2jira_32.png",
"16": "toggl2jira_16.png",
"48": "toggl2jira_48.png",
"128": "toggl2jira_128.png"
},
"background": {
"service_worker": "background.js"
},
"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": 3
}