fix: match non-html extension too

This commit is contained in:
Valentin Boettcher 2024-03-02 15:34:39 -05:00
parent 58bd94cf43
commit e67ef05a0d
No known key found for this signature in database
GPG key ID: E034E12B7AF56ACE

View file

@ -19,8 +19,8 @@
"content_scripts": [
{
"matches": ["*://*.gigamonkeys.com/book/*.html"],
"exclude_matches": ["*://*.gigamonkeys.com/book/index.html"],
"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"]
}