| { |
| {% if key is defined %} |
| "key": "{{key}}", |
| {% endif %} |
| {% if is_manifest_v3 == '1' %} |
| "manifest_version": 3, |
| "minimum_chrome_version": "93", |
| "background": { |
| "service_worker": "switch_access/switch_access_loader.js", |
| "type": "module" |
| }, |
| {% else %} |
| "manifest_version": 2, |
| "background": { |
| "page": "switch_access/background.html" |
| }, |
| {% endif %} |
| "name": "__MSG_SWITCH_ACCESS_NAME__", |
| "version": "{{set_version}}", |
| "description": "__MSG_SWITCH_ACCESS_DESCRIPTION__", |
| {% if is_guest_manifest == '1' %} |
| "incognito": "split", |
| {% endif %} |
| "permissions": [ |
| "accessibilityPrivate", |
| "clipboard", |
| "clipboardRead", |
| "commandLinePrivate", |
| "metricsPrivate", |
| "settingsPrivate", |
| "tabs" |
| ], |
| "automation": { |
| "desktop": true |
| }, |
| "default_locale": "en", |
| "content_scripts": [ |
| { |
| "matches": [ "https://docs.google.com/document*", |
| "https://docs.sandbox.google.com/document*" ], |
| "all_frames": true, |
| "js": [ |
| "common/gdocs_script.js" |
| ], |
| "run_at": "document_start" |
| } |
| ] |
| } |