practical-cl-beautified/manifest.json
Valentin Boettcher 80961773cb icon+wrappercode
2019-01-01 21:10:21 +01:00

32 lines
683 B
JSON

{
"manifest_version": 2,
"name": "Beautify Practical Common Lisp",
"version": "1.0",
"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/background.js"
]
},
"content_scripts": [
{
"matches": ["*://*.gigamonkeys.com/book/*.html"],
"js": ["./js/highlight-lisp.js", "./js/tocbot.js","./js/main.js"],
"css": ["./css/highlight-style.css"]
}
],
"permissions": [
"*://*.gigamonkeys.com/book/*",
"webRequest",
"storage"
]
}