{
{%if key is defined %}
"key": "{{key}}",
{% endif %}
"manifest_version": 3,
"name": "Accessibility Helper",
"version": "{{set_version}}",
"description": "Provides support for Ash accessibility features from non-Ash browsers",
"default_locale": "en",
"background": {
"service_worker": "embedded_a11y_helper/service_worker.js",
"type":"module"
},
"permissions": [
"accessibilityFeatures.read",
"accessibilityServicePrivate",
"contextMenus",
"scripting",
"storage",
"tabs"
],
"incognito": "split",
"icons": {
"128": "embedded_a11y_helper/sts-icon-128.png",
"16": "embedded_a11y_helper/sts-icon-16.png",
"48": "embedded_a11y_helper/sts-icon-48.png"
},
"content_scripts": [
{
"matches": [ "https://docs.google.com/document*",
"https://docs.sandbox.google.com/document*" ],
"all_frames": true,
"js": [
"embedded_a11y_helper/content.js"
],
"run_at": "document_start"
}
],
"host_permissions": [
"https://docs.google.com/document*",
"https://docs.sandbox.google.com/document*"
],
"web_accessible_resources": [
{
"resources": ["embedded_a11y_helper/gdocs_script.js"],
"matches": [ "https://docs.google.com/*",
"https://docs.sandbox.google.com/*" ]
}
]
}