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": "ChromeVox", | 6 "name": "ChromeVox", |
7 "version": "{{set_version}}", | 7 "version": "{{set_version}}", |
8 "description": "ChromeVox - Giving Voice to Chrome.", | 8 "description": "ChromeVox - Giving Voice to Chrome.", |
9 {% if is_guest_manifest == '1' %} | 9 {% if is_guest_manifest == '1' %} |
10 "incognito": "split", | 10 "incognito": "split", |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "suggested_key": { | 68 "suggested_key": { |
69 "chromeos": "Search+Right" | 69 "chromeos": "Search+Right" |
70 } | 70 } |
71 }, | 71 }, |
72 "previousElement": { | 72 "previousElement": { |
73 "description": "Moves to the previous element", | 73 "description": "Moves to the previous element", |
74 "suggested_key": { | 74 "suggested_key": { |
75 "chromeos": "Search+Left" | 75 "chromeos": "Search+Left" |
76 } | 76 } |
77 }, | 77 }, |
| 78 "nextCharacter": { |
| 79 "description": "__MSG_CHROMEVOX_NEXT_CHARACTER__", |
| 80 "suggested_key": { |
| 81 "chromeos": "Search+Shift+Right" |
| 82 } |
| 83 }, |
| 84 "previousCharacter": { |
| 85 "description": "__MSG_CHROMEVOX_PREVIOUS_CHARACTER__", |
| 86 "suggested_key": { |
| 87 "chromeos": "Search+Shift+Left" |
| 88 } |
| 89 }, |
| 90 "nextWord": { |
| 91 "description": "__MSG_CHROMEVOX_NEXT_WORD__", |
| 92 "suggested_key": { |
| 93 "chromeos": "Search+Ctrl+Shift+Right" |
| 94 } |
| 95 }, |
| 96 "previousWord": { |
| 97 "description": "__MSG_CHROMEVOX_PREVIOUS_WORD__", |
| 98 "suggested_key": { |
| 99 "chromeos": "Search+Ctrl+Shift+Left" |
| 100 } |
| 101 }, |
78 "nextLine": { | 102 "nextLine": { |
79 "description": "__MSG_CHROMEVOX_NEXT_LINE__", | 103 "description": "__MSG_CHROMEVOX_NEXT_LINE__", |
80 "suggested_key": { | 104 "suggested_key": { |
81 "chromeos": "Search+Down" | 105 "chromeos": "Search+Down" |
82 } | 106 } |
83 }, | 107 }, |
84 "previousLine": { | 108 "previousLine": { |
85 "description": "__MSG_CHROMEVOX_PREVIOUS_LINE__", | 109 "description": "__MSG_CHROMEVOX_PREVIOUS_LINE__", |
86 "suggested_key": { | 110 "suggested_key": { |
87 "chromeos": "Search+Up" | 111 "chromeos": "Search+Up" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 "description": "__MSG_CHROMEVOX_TOGGLE_CHROMEVOX__", | 151 "description": "__MSG_CHROMEVOX_TOGGLE_CHROMEVOX__", |
128 "suggested_key": { | 152 "suggested_key": { |
129 "chromeos": "Search+Ctrl+Q" | 153 "chromeos": "Search+Ctrl+Q" |
130 } | 154 } |
131 } | 155 } |
132 }, | 156 }, |
133 {% endif %} | 157 {% endif %} |
134 "options_page": "chromevox/background/options.html", | 158 "options_page": "chromevox/background/options.html", |
135 "default_locale": "en" | 159 "default_locale": "en" |
136 } | 160 } |
OLD | NEW |