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_CHROMEVOX_NAME__", | 6 "name": "__MSG_CHROMEVOX_NAME__", |
7 "version": "{{set_version}}", | 7 "version": "{{set_version}}", |
8 "description": "__MSG_CHROMEVOX_DESCRIPTION__", | 8 "description": "__MSG_CHROMEVOX_DESCRIPTION__", |
9 {% if is_guest_manifest == '1' %} | 9 {% if is_guest_manifest == '1' %} |
10 "incognito": "split", | 10 "incognito": "split", |
(...skipping 16 matching lines...) Expand all Loading... | |
27 "virtualKeyboardPrivate", | 27 "virtualKeyboardPrivate", |
28 "<all_urls>" | 28 "<all_urls>" |
29 ], | 29 ], |
30 "content_scripts": [ | 30 "content_scripts": [ |
31 { | 31 { |
32 "matches": [ "<all_urls>" ], | 32 "matches": [ "<all_urls>" ], |
33 "exclude_globs": [ | 33 "exclude_globs": [ |
34 "chrome-extension://*", | 34 "chrome-extension://*", |
35 "chrome://*", | 35 "chrome://*", |
36 "https://accounts.google.com/embedded/setup/chromeos*", | 36 "https://accounts.google.com/embedded/setup/chromeos*", |
37 "https://talkgadget.google.com/hangouts*" | 37 "https://talkgadget.google.com/hangouts*", |
38 "*.pdf" | |
David Tseng
2016/06/28 19:53:30
Have you tested this with an iframe src'ed to a pd
dmazzoni
2016/06/29 20:50:21
Good catch. I changed the whitelisting rules so th
| |
38 ], | 39 ], |
39 "all_frames": true, | 40 "all_frames": true, |
40 "js": [ | 41 "js": [ |
41 {% if is_js_compressed == '1' %} | 42 {% if is_js_compressed == '1' %} |
42 "chromeVoxChromePageScript.js", | 43 "chromeVoxChromePageScript.js", |
43 "chromeVox2ChromePageScript.js" | 44 "chromeVox2ChromePageScript.js" |
44 {% else %} | 45 {% else %} |
45 "closure/closure_preinit.js", | 46 "closure/closure_preinit.js", |
46 "closure/base.js", | 47 "closure/base.js", |
47 "deps.js", | 48 "deps.js", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
93 } | 94 } |
94 }, | 95 }, |
95 "options_page": "chromevox/background/options.html", | 96 "options_page": "chromevox/background/options.html", |
96 "default_locale": "en", | 97 "default_locale": "en", |
97 "icons": { | 98 "icons": { |
98 "16": "images/chromevox-16.png", | 99 "16": "images/chromevox-16.png", |
99 "48": "images/chromevox-48.png", | 100 "48": "images/chromevox-48.png", |
100 "128": "images/chromevox-128.png" | 101 "128": "images/chromevox-128.png" |
101 } | 102 } |
102 } | 103 } |
OLD | NEW |