mirror of
https://github.com/koloml/furbooru-tagging-assistant.git
synced 2025-12-24 07:12:57 +00:00
38 lines
969 B
JSON
38 lines
969 B
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.1.1",
|
|
"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"
|
|
]
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "index.html"
|
|
},
|
|
"permissions": [
|
|
"storage"
|
|
]
|
|
}
|