1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-23 23:02:58 +00:00

Support building content scripts defined in manifest.json

This commit is contained in:
2024-03-30 21:29:31 +04:00
parent f2c3d197b5
commit f815712347
2 changed files with 98 additions and 27 deletions

View File

@@ -5,6 +5,22 @@
"host_permissions": [
"*://*.furbooru.org/"
],
"content_scripts": [
{
"matches": [
"*://*.furbooru.org/",
"*://*.furbooru.org/images?*",
"*://*.furbooru.org/search?*",
"*://*.furbooru.org/tags/*"
],
"js": [
"src/content/listing.js"
],
"css": [
"src/styles/content/listing.scss"
]
}
],
"action": {
"default_popup": "index.html"
},