metamorpov/src/manifest.json

67 lines
1.3 KiB
JSON
Raw Normal View History

2024-12-19 04:26:24 -05:00
{
2025-02-22 16:52:39 -05:00
"manifest_version": 3,
2024-12-19 04:26:24 -05:00
"name": "MetamorPOV",
"author": "Jean Viscogliosi-Pate",
2025-02-22 05:38:21 -05:00
"version": "1.1.0",
2024-12-19 04:26:24 -05:00
"description": "Enables customization of reader-insert stories by replacing author-provided hooks such as Y/n, pov/s, and vrb/do/present/.",
"browser_specific_settings": {
"gecko": {
2025-01-26 23:42:10 -05:00
"id": "metamorpov@viscogliosi-pate.com",
"strict_min_version": "113.0"
},
"gecko_android": {}
},
2025-02-22 16:52:39 -05:00
"action": {
"default_title": "MetamorPOV",
2024-12-19 04:26:24 -05:00
"default_icon": {
2025-01-25 23:41:19 -05:00
"16": "metamorpov.svg",
"32": "metamorpov.svg",
"48": "metamorpov.svg",
"64": "metamorpov.svg",
"96": "metamorpov.svg",
"128": "metamorpov.svg"
2024-12-19 04:26:24 -05:00
},
"default_popup": "popup.html"
2024-12-19 04:26:24 -05:00
},
2024-12-20 12:25:42 -05:00
2024-12-19 04:26:24 -05:00
"permissions": [
"storage",
"tabs"
],
2025-02-22 16:52:39 -05:00
"host_permissions": [
"http://*/*",
"https://*/*"
],
2024-12-19 04:26:24 -05:00
"icons": {
2025-01-25 23:41:19 -05:00
"16": "metamorpov.svg",
"32": "metamorpov.svg",
"48": "metamorpov.svg",
"64": "metamorpov.svg",
"96": "metamorpov.svg",
"128": "metamorpov.svg"
2024-12-19 04:26:24 -05:00
},
"content_scripts": [
{
"js": [
"content-script.js"
2024-12-19 04:26:24 -05:00
],
"run_at": "document_idle",
"matches": [
"*://*/*"
]
}
],
2024-12-20 12:25:42 -05:00
2024-12-19 04:26:24 -05:00
"background": {
"page": "popup.html"
2024-12-19 04:26:24 -05:00
},
2024-12-20 12:25:42 -05:00
2024-12-19 04:26:24 -05:00
"homepage_url": "https://git.viscogliosi-pate.com/jean/metamorpov"
}