mirror of
https://github.com/koloml/furbooru-tagging-assistant.git
synced 2025-12-23 23:02:58 +00:00
This is mainly affecting the Derpibooru version of the extension. Tags list on Derpibooru is using flex with gaps instead of flex with margins appearing like gaps (what currently Furbooru uses). This change would likely be applied to the Furbooru as well.
81 lines
2.2 KiB
JSON
81 lines
2.2 KiB
JSON
{
|
|
"name": "Furbooru Tagging Assistant",
|
|
"description": "Small experimental extension for slightly quicker tagging experience. Furbooru Edition.",
|
|
"version": "0.5.0",
|
|
"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/*"
|
|
],
|
|
"js": [
|
|
"src/content/deps/amd.ts"
|
|
]
|
|
},
|
|
{
|
|
"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"
|
|
],
|
|
"css": [
|
|
"src/styles/content/tags-editor.scss"
|
|
]
|
|
},
|
|
{
|
|
"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"
|
|
]
|
|
}
|