initial
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user