practical-cl-beautified/manifest.json

35 lines
818 B
JSON
Raw Normal View History

2019-01-01 20:10:17 +01:00
{
"manifest_version": 2,
"name": "Beautify Practical Common Lisp",
2022-11-05 16:59:13 +01:00
"version": "1.5.3",
2019-01-01 20:10:17 +01:00
"description": "Adds a simple table of contents and syntax highlighting to the web version of Practical Common Lisp by Peter Seibel.",
"icons": {
2019-01-01 21:10:21 +01:00
"48": "./icon/icon.svg",
"96": "./icon/icon.svg"
2019-01-01 20:10:17 +01:00
},
"background": {
"scripts": [
2019-06-26 11:22:25 +02:00
"./js/webpoly.js",
2019-01-01 20:10:17 +01:00
"./js/background.js"
]
},
"content_scripts": [
{
"matches": ["*://*.gigamonkeys.com/book/*.html"],
2022-11-05 16:58:58 +01:00
"exclude_matches": ["*://*.gigamonkeys.com/book/index.html"],
2019-06-26 11:22:25 +02:00
"js": ["./js/webpoly.js", "./js/highlight-lisp.js", "./js/tocbot.js","./js/tippy.js","./js/main.js"],
2019-01-01 20:10:17 +01:00
"css": ["./css/highlight-style.css"]
}
],
"permissions": [
"*://*.gigamonkeys.com/book/*",
"webRequest",
"storage"
]
}