mirror of
https://github.com/koloml/philomena-tagging-assistant.git
synced 2026-06-23 18:22:20 +00:00
Main use case for these flags is to notify when something they're trying to use will not be usable due to authorization or their role on the site. Specifically, it will be also used later to detect when user is a part of staff and show them staff-specific features.
116 lines
3.2 KiB
JSON
116 lines
3.2 KiB
JSON
{
|
|
"name": "Furbooru Tagging Assistant",
|
|
"description": "Small experimental extension for slightly quicker tagging experience. Furbooru Edition.",
|
|
"version": "0.7.2",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "furbooru-tagging-assistant@thecore.city",
|
|
"data_collection_permissions": {
|
|
"required": [
|
|
"none"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"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",
|
|
"src/content/user-details.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/*"
|
|
],
|
|
"exclude_matches": [
|
|
"*://*.furbooru.org/images/new",
|
|
"*://*.furbooru.org/images/new?*"
|
|
],
|
|
"js": [
|
|
"src/content/tags-editor.ts"
|
|
],
|
|
"css": [
|
|
"src/styles/content/tags-editor.scss",
|
|
"src/styles/content/tag-presets.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"
|
|
]
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://*.furbooru.org/posts",
|
|
"*://*.furbooru.org/posts?*",
|
|
"*://*.furbooru.org/forums/*/topics/*"
|
|
],
|
|
"js": [
|
|
"src/content/posts.ts"
|
|
],
|
|
"css": [
|
|
"src/styles/content/posts.scss"
|
|
]
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://*.furbooru.org/images/new"
|
|
],
|
|
"js": [
|
|
"src/content/upload.ts"
|
|
],
|
|
"css": [
|
|
"src/styles/content/tag-presets.scss"
|
|
]
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "index.html"
|
|
},
|
|
"permissions": [
|
|
"storage"
|
|
]
|
|
}
|