-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 859 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
36
{
"name": "github toc",
"version": "1.0.0",
"manifest_version": 2,
"description": "markdown toc for github document",
"homepage_url": "http://www.lwl.tech",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_icon": "img/icon19.png",
"default_title": "github toc",
"default_popup": "pop.html"
},
"permissions": [
"tabs",
"*://*/*"
],
"background": {
"scripts": [
"js/background.js"
]
},
"content_scripts": [
{
"matches": ["*://*.github.com/*", "*://218.16.62.105:*/*"],
"css": ["css/toc.css"],
"js": [
"js/jquery-1.8.0.min.js",
"js/toc.js"
]
}
]
}