metamorpov/src/manifest.json

65 lines
1.3 KiB
JSON
Raw Normal View History

2024-12-19 04:26:24 -05:00
{
"manifest_version": 2,
"name": "MetamorPOV",
"author": "Jean Viscogliosi-Pate",
"version": "0.1.0",
"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": {
"id": "metamorpov@viscogliosi-pate.com"
},
"gecko_android": {}
},
2024-12-19 04:26:24 -05:00
"browser_action": {
"default_title": "MetamorPOV",
2024-12-19 04:26:24 -05:00
"default_icon": {
2024-12-20 12:25:42 -05:00
"16": "img/mpov-16.png",
"32": "img/mpov-32.png",
"48": "img/mpov-48.png",
"64": "img/mpov-64.png",
"96": "img/mpov-96.png",
"128": "img/mpov-128.png"
2024-12-19 04:26:24 -05:00
},
2024-12-20 02:25:13 -05:00
"default_popup": "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"
],
"icons": {
2024-12-20 02:25:13 -05:00
"16": "img/mpov-16.png",
"32": "img/mpov-32.png",
"48": "img/mpov-48.png",
"64": "img/mpov-64.png",
"96": "img/mpov-96.png",
"128": "img/mpov-128.png"
2024-12-19 04:26:24 -05:00
},
"content_scripts": [
{
"js": [
"replace-words-and-verbs.js"
2024-12-19 04:26:24 -05:00
],
"run_at": "document_idle",
"matches": [
"*://*/*"
]
}
],
2024-12-20 12:25:42 -05:00
"options_ui": {
"page": "options/options.html"
},
2024-12-19 04:26:24 -05:00
"background": {
2024-12-20 02:25:13 -05:00
"page": "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
"homepage_url": "https://git.viscogliosi-pate.com/jean/metamorpov"
}