-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest-firefox.json
46 lines (46 loc) · 1.42 KB
/
manifest-firefox.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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "GitCommits",
"version": "2.0",
"description": "GitCommits is a platform that brings Product Owners, Software Developers, and End Users together like never before.",
"manifest_version": 2,
"permissions": ["storage", "activeTab", "*://*.gitcommits.com/*","*://*.github.com/*","*://*.atlassian.net/*"],
"background": {
"scripts": ["variables.js","assets/js/axios.min.js","assets/js/auth_helper.js","init.js"]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_title": "GitCommits",
"default_popup": "html/popup.html",
"default_icon": {
"16": "images/favicon-16x16.png",
"32": "images/favicon-32x32.png",
"48": "images/android-chrome-192x192.png",
"128": "images/android-chrome-192x192.png"
}
},
"icons": {
"16": "images/favicon-16x16.png",
"32": "images/favicon-32x32.png",
"48": "images/android-chrome-192x192.png",
"128": "images/android-chrome-192x192.png"
},
"content_scripts": [
{
"matches": ["*://app.gitcommits.com/extension-token"],
"js": ["assets/js/contentScript.js"],
"run_at": "document_end"
}
],
"externally_connectable": {
"matches": ["*://*.gitcommits.com/*"]
},
"web_accessible_resources": [
"assets/images/gitcommits-logo-topdown.png",
"pagescript.js"
],
"applications": {
"gecko": {
"id": "[email protected]"
}
}
}