2019-01-01 20:10:17 +01:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "Beautify Practical Common Lisp",
|
2024-03-02 15:35:51 -05:00
|
|
|
"version": "1.5.4",
|
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": {
|
2024-03-02 15:34:39 -05:00
|
|
|
"48": "./icon/icon.svg",
|
|
|
|
"96": "./icon/icon.svg"
|
2019-01-01 20:10:17 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
"background": {
|
2024-03-02 15:34:39 -05:00
|
|
|
"scripts": [
|
|
|
|
"./js/webpoly.js",
|
|
|
|
"./js/background.js"
|
|
|
|
]
|
2019-01-01 20:10:17 +01:00
|
|
|
},
|
2024-03-02 15:34:39 -05:00
|
|
|
|
2019-01-01 20:10:17 +01:00
|
|
|
"content_scripts": [
|
2024-03-02 15:34:39 -05:00
|
|
|
{
|
|
|
|
"matches": ["*://*.gigamonkeys.com/book/*.html", "*://*.gigamonkeys.com/book/*"],
|
|
|
|
"exclude_matches": ["*://*.gigamonkeys.com/book/index.html", "*://*.gigamonkeys.com/book/index"],
|
|
|
|
"js": ["./js/webpoly.js", "./js/highlight-lisp.js", "./js/tocbot.js","./js/tippy.js","./js/main.js"],
|
|
|
|
"css": ["./css/highlight-style.css"]
|
|
|
|
}
|
2019-01-01 20:10:17 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
"permissions": [
|
2024-03-02 15:34:39 -05:00
|
|
|
"*://*.gigamonkeys.com/book/*",
|
|
|
|
"webRequest",
|
|
|
|
"storage"
|
2019-01-01 20:10:17 +01:00
|
|
|
]
|
|
|
|
}
|