| 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 13 matching lines...) Expand all Loading... |
| 24 "tabs", | 24 "tabs", |
| 25 "tts", | 25 "tts", |
| 26 "virtualKeyboardPrivate", | 26 "virtualKeyboardPrivate", |
| 27 "<all_urls>" | 27 "<all_urls>" |
| 28 ], | 28 ], |
| 29 "content_scripts": [ | 29 "content_scripts": [ |
| 30 { | 30 { |
| 31 "matches": [ "<all_urls>" ], | 31 "matches": [ "<all_urls>" ], |
| 32 "exclude_globs": [ | 32 "exclude_globs": [ |
| 33 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/cvox2/background/
background.html", | 33 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/cvox2/background/
background.html", |
| 34 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/backgro
und/kbexplorer.html", |
| 34 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/cvox2/background/
panel.html", | 35 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/cvox2/background/
panel.html", |
| 35 "chrome://md-settings*", | 36 "chrome://md-settings*", |
| 36 "chrome://downloads*", | 37 "chrome://downloads*", |
| 37 "chrome://oobe/login*", | 38 "chrome://oobe/login*", |
| 38 "https://accounts.google.com/embedded/setup/chromeos*" | 39 "https://accounts.google.com/embedded/setup/chromeos*" |
| 39 ], | 40 ], |
| 40 "all_frames": true, | 41 "all_frames": true, |
| 41 "js": [ | 42 "js": [ |
| 42 {% if is_js_compressed == '1' %} | 43 {% if is_js_compressed == '1' %} |
| 43 "chromeVoxChromePageScript.js", | 44 "chromeVoxChromePageScript.js", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 } | 95 } |
| 95 }, | 96 }, |
| 96 "options_page": "chromevox/background/options.html", | 97 "options_page": "chromevox/background/options.html", |
| 97 "default_locale": "en", | 98 "default_locale": "en", |
| 98 "icons": { | 99 "icons": { |
| 99 "16": "images/chromevox-16.png", | 100 "16": "images/chromevox-16.png", |
| 100 "48": "images/chromevox-48.png", | 101 "48": "images/chromevox-48.png", |
| 101 "128": "images/chromevox-128.png" | 102 "128": "images/chromevox-128.png" |
| 102 } | 103 } |
| 103 } | 104 } |
| OLD | NEW |