OLD | NEW |
1 { | 1 { |
2 {%if key is defined %} | 2 {%if key is defined %} |
3 "key": "{{key}}", | 3 "key": "{{key}}", |
4 {% endif %} | 4 {% endif %} |
5 "manifest_version": 2, | 5 "manifest_version": 2, |
6 "name": "__MSG_SELECT_TO_SPEAK_NAME__", | 6 "name": "__MSG_SELECT_TO_SPEAK_NAME__", |
7 "version": "{{set_version}}", | 7 "version": "{{set_version}}", |
8 "description": "__MSG_SELECT_TO_SPEAK_DESCRIPTION__", | 8 "description": "__MSG_SELECT_TO_SPEAK_DESCRIPTION__", |
9 {% if is_guest_manifest == '1' %} | 9 {% if is_guest_manifest == '1' %} |
10 "incognito": "split", | 10 "incognito": "split", |
11 {% endif %} | 11 {% endif %} |
12 "background": { | 12 "background": { |
13 "scripts": [ | 13 "scripts": [ |
14 "select_to_speak.js", | 14 "select_to_speak.js", |
15 "select_to_speak_main.js" | 15 "select_to_speak_main.js" |
16 ] | 16 ] |
17 }, | 17 }, |
18 "permissions": [ | 18 "permissions": [ |
19 "accessibilityPrivate", | 19 "accessibilityPrivate", |
20 "storage", | 20 "storage", |
21 "tts" | 21 "tts" |
22 ], | 22 ], |
23 "automation": { | 23 "automation": { |
24 "desktop": true | 24 "desktop": true |
25 }, | 25 }, |
26 "default_locale": "en", | 26 "default_locale": "en", |
27 "options_page": "options.html" | 27 "options_page": "options.html", |
| 28 "content_scripts": [ |
| 29 { |
| 30 "matches": [ "https://docs.google.com/document*" ], |
| 31 "js": [ |
| 32 "select_to_speak_gdocs_script.js" |
| 33 ] |
| 34 } |
| 35 ] |
28 } | 36 } |
OLD | NEW |