| 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", |
| 11 {% endif %} | 11 {% endif %} |
| 12 "background": { | 12 "background": { |
| 13 "page": "cvox2/background/background.html" | 13 "page": "cvox2/background/background.html" |
| 14 }, | 14 }, |
| 15 "permissions": [ | 15 "permissions": [ |
| 16 "accessibilityPrivate", | 16 "accessibilityPrivate", |
| 17 "bookmarks", | 17 "bookmarks", |
| 18 "brailleDisplayPrivate", | 18 "brailleDisplayPrivate", |
| 19 "clipboardRead", | 19 "clipboardRead", |
| 20 "commands.accessibility", | 20 "commands.accessibility", |
| 21 "commandLinePrivate", | 21 "commandLinePrivate", |
| 22 "experimental", | 22 "experimental", |
| 23 "history", | 23 "history", |
| 24 "metricsPrivate", |
| 24 "notifications", | 25 "notifications", |
| 25 "storage", | 26 "storage", |
| 26 "tabs", | 27 "tabs", |
| 27 "tts", | 28 "tts", |
| 28 "virtualKeyboardPrivate", | 29 "virtualKeyboardPrivate", |
| 29 "<all_urls>" | 30 "<all_urls>" |
| 30 ], | 31 ], |
| 31 "content_scripts": [ | 32 "content_scripts": [ |
| 32 { | 33 { |
| 33 "matches": [ "<all_urls>" ], | 34 "matches": [ "<all_urls>" ], |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 } | 98 } |
| 98 }, | 99 }, |
| 99 "options_page": "chromevox/background/options.html", | 100 "options_page": "chromevox/background/options.html", |
| 100 "default_locale": "en", | 101 "default_locale": "en", |
| 101 "icons": { | 102 "icons": { |
| 102 "16": "images/chromevox-16.png", | 103 "16": "images/chromevox-16.png", |
| 103 "48": "images/chromevox-48.png", | 104 "48": "images/chromevox-48.png", |
| 104 "128": "images/chromevox-128.png" | 105 "128": "images/chromevox-128.png" |
| 105 } | 106 } |
| 106 } | 107 } |
| OLD | NEW |