-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 836 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 836 Bytes
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
{
"manifest_version": 2,
"name": "iGitIssue",
"version": "0.4",
"description": "GitIssue user can subscribe or unsubscribe Github repository easily with this extension when visiting Github.",
"icons": {
"16": "icon16x16.png",
"48": "icon48x48.png"
},
"browser_action": {
"default_icon": "icon48x48.png",
"default_popup": "popup.html",
"default_title": "Hello, GitIssuer"
},
"content_scripts": [
{
"matches": ["https://github.com/*/*"],
"js": ["jquery-3.2.1.min.js", "tooltipster.js","gitissue.js"],
"css": ["tooltipster.css", "gitissue.css"]
}
],
"author": "GitIssue",
"homepage_url": "https://gitissue.com",
"permissions": [
"tabs",
"https://gitissue.com/api/*",
"https://github.com/*"
],
"web_accessible_resources": [
"icon48x48.png"
]
}