mirror of
https://github.com/koloml/furbooru-tagging-assistant.git
synced 2025-12-23 23:02:58 +00:00
This feature is moved directly into Philomena. This implementation is now outdated and depends on the previous version of suggestions popup.
70 lines
2.0 KiB
JSON
70 lines
2.0 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.4.4",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "furbooru-tagging-assistant@thecore.city"
|
|
}
|
|
},
|
|
"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/*",
|
|
"*://*.furbooru.org/galleries/*"
|
|
],
|
|
"js": [
|
|
"src/content/listing.ts"
|
|
],
|
|
"css": [
|
|
"src/styles/content/listing.scss"
|
|
]
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://*.furbooru.org/images/*"
|
|
],
|
|
"js": [
|
|
"src/content/tags-editor.ts"
|
|
]
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://*.furbooru.org/images?*",
|
|
"*://*.furbooru.org/images/*",
|
|
"*://*.furbooru.org/images/*/tag_changes",
|
|
"*://*.furbooru.org/images/*/tag_changes?*",
|
|
"*://*.furbooru.org/search?*",
|
|
"*://*.furbooru.org/tags",
|
|
"*://*.furbooru.org/tags?*",
|
|
"*://*.furbooru.org/tags/*",
|
|
"*://*.furbooru.org/profiles/*/tag_changes",
|
|
"*://*.furbooru.org/profiles/*/tag_changes?*",
|
|
"*://*.furbooru.org/filters/*"
|
|
],
|
|
"js": [
|
|
"src/content/tags.ts"
|
|
]
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "index.html"
|
|
},
|
|
"permissions": [
|
|
"storage"
|
|
]
|
|
}
|