| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "closure/base.js", | 51 "closure/base.js", |
| 52 "deps.js", | 52 "deps.js", |
| 53 "chromevox/injected/loader.js" | 53 "chromevox/injected/loader.js" |
| 54 {% endif %} | 54 {% endif %} |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 ], | 57 ], |
| 58 "web_accessible_resources": [ | 58 "web_accessible_resources": [ |
| 59 "chromevox/background/keymaps/next_keymap.json", | 59 "chromevox/background/keymaps/next_keymap.json", |
| 60 "chromevox/injected/api.js", | 60 "chromevox/injected/api.js", |
| 61 "chromevox/injected/api_util.js", | |
| 62 "chromevox/injected/mathjax.js", | 61 "chromevox/injected/mathjax.js", |
| 63 "chromevox/injected/mathjax_external_util.js" | 62 "chromevox/injected/mathjax_external_util.js" |
| 64 ], | 63 ], |
| 65 "automation": { | 64 "automation": { |
| 66 "desktop": true | 65 "desktop": true |
| 67 }, | 66 }, |
| 68 "commands": { | 67 "commands": { |
| 69 "nextObject": { | 68 "nextObject": { |
| 70 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__", | 69 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__", |
| 71 "suggested_key": { | 70 "suggested_key": { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 98 } | 97 } |
| 99 }, | 98 }, |
| 100 "options_page": "chromevox/background/options.html", | 99 "options_page": "chromevox/background/options.html", |
| 101 "default_locale": "en", | 100 "default_locale": "en", |
| 102 "icons": { | 101 "icons": { |
| 103 "16": "images/chromevox-16.png", | 102 "16": "images/chromevox-16.png", |
| 104 "48": "images/chromevox-48.png", | 103 "48": "images/chromevox-48.png", |
| 105 "128": "images/chromevox-128.png" | 104 "128": "images/chromevox-128.png" |
| 106 } | 105 } |
| 107 } | 106 } |
| OLD | NEW |