61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "MetamorPOV",
|
|
"author": "Jean Viscogliosi-Pate",
|
|
"version": "2.0.0",
|
|
|
|
"description": "Enables customization of reader-insert stories by translating specific markers such as Y/n, pov/s, and vrb/do/present/.",
|
|
|
|
"action": {
|
|
"default_title": "MetamorPOV",
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/light-state-neutral-16x.png",
|
|
"32": "icons/light-state-neutral-32x.png",
|
|
"48": "icons/light-state-neutral-48x.png",
|
|
"64": "icons/light-state-neutral-64x.png",
|
|
"96": "icons/light-state-neutral-96x.png",
|
|
"128": "icons/light-state-neutral-128x.png"
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"storage",
|
|
"tabs",
|
|
"offscreen"
|
|
],
|
|
|
|
"host_permissions": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
|
|
"icons": {
|
|
"16": "icons/light-state-neutral-16x.png",
|
|
"32": "icons/light-state-neutral-32x.png",
|
|
"48": "icons/light-state-neutral-48x.png",
|
|
"64": "icons/light-state-neutral-64x.png",
|
|
"96": "icons/light-state-neutral-96x.png",
|
|
"128": "icons/light-state-neutral-128x.png"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"js": [
|
|
"content-script.js"
|
|
],
|
|
"run_at": "document_idle",
|
|
"matches": [
|
|
"*://*/*"
|
|
]
|
|
}
|
|
],
|
|
|
|
"background": {
|
|
"service_worker": "service-worker.js",
|
|
"type": "module"
|
|
},
|
|
|
|
"homepage_url": "https://git.viscogliosi-pate.com/jean/metamorpov"
|
|
}
|