1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-23 23:02:58 +00:00
Files
furbooru-tagging-assistant/manifest.json
2024-08-08 07:29:20 +04:00

46 lines
1.1 KiB
JSON

{
"name": "Furbooru Tagging Assistant",
"description": "Experimental extension with a set of tools to make the tagging faster and easier. Made specifically for Furbooru.",
"version": "0.2.0",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png",
"256": "icon256.png"
},
"manifest_version": 3,
"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"
]
},
{
"matches": [
"*://*.furbooru.org/*"
],
"js": [
"src/content/header.js"
]
}
],
"action": {
"default_popup": "index.html"
},
"permissions": [
"storage"
]
}