-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
34 lines (29 loc) · 1011 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
{
"manifest_version": 2,
"name": "Beautify Practical Common Lisp",
"version": "1.5.5",
"description": "Adds a simple table of contents and syntax highlighting to the web version of Practical Common Lisp by Peter Seibel.",
"icons": {
"48": "./icon/icon.svg",
"96": "./icon/icon.svg"
},
"background": {
"scripts": [
"./js/webpoly.js",
"./js/background.js"
]
},
"content_scripts": [
{
"matches": ["*://*.gigamonkeys.com/book/*.html", "*://*.gigamonkeys.com/book/*"],
"exclude_matches": ["*://*.gigamonkeys.com/book/index.html", "*://*.gigamonkeys.com/book/index", "*://*.gigamonkeys.com/book/"],
"js": ["./js/webpoly.js", "./js/highlight-lisp.js", "./js/tocbot.js","./js/tippy.js","./js/main.js"],
"css": ["./css/highlight-style.css"]
}
],
"permissions": [
"*://*.gigamonkeys.com/book/*",
"webRequest",
"storage"
]
}