Files
glagolify/manifest.json
T
2026-08-08 17:09:43 +02:00

53 lines
1.2 KiB
JSON

{
"manifest_version": 2,
"name": "Glagolify",
"version": "1.0.0",
"description": "Toggle modern Russian page text between Cyrillic and Glagolitic.",
"browser_specific_settings": {
"gecko": {
"id": "glagolify@example.local",
"strict_min_version": "142.0",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"permissions": [
"activeTab",
"<all_urls>"
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"browser_action": {
"default_title": "Glagolify this page",
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon-16.svg",
"32": "icons/icon-32.svg",
"48": "icons/icon-48.svg",
"96": "icons/icon-96.svg"
}
},
"icons": {
"16": "icons/icon-16.svg",
"32": "icons/icon-32.svg",
"48": "icons/icon-48.svg",
"96": "icons/icon-96.svg"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["transliterate.js", "content.js"],
"css": ["content.css"],
"run_at": "document_idle",
"all_frames": true,
"match_about_blank": true
}
],
"web_accessible_resources": [
"fonts/NotoSansGlagolitic-Regular.ttf"
]
}