mirror of
https://github.com/vale981/practical-cl-beautified
synced 2025-03-04 17:11:42 -05:00
32 lines
683 B
JSON
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"
|
|
]
|
|
}
|