Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: ui/accessibility/extensions/alt/manifest.json

Issue 610453002: Move accessibility extension translations to grd file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/accessibility/extensions/alt/options.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "Replace images with alt text", 2 "name": "Replace images with alt text",
3 "version": "0.1", 3 "version": "0.1",
4 "description": "Replace images with their alt text", 4 "description": "__MSG_appDesc__",
5 "background": { 5 "background": {
6 "scripts": [ "background.js" ] 6 "scripts": [ "background.js" ]
7 }, 7 },
8 "commands": { 8 "commands": {
9 "example_keyboard_command": { 9 "example_keyboard_command": {
10 "suggested_key": { 10 "suggested_key": {
11 "default": "Ctrl+Shift+I", 11 "default": "Ctrl+Shift+I",
12 "mac": "Ctrl+Shift+I" 12 "mac": "Ctrl+Shift+I"
13 }, 13 },
14 "description": "Replace all images with their alt text." 14 "description": "Replace all images with their alt text."
15 } 15 }
16 }, 16 },
17 "browser_action": { 17 "browser_action": {
18 "default_title": "Replace all images with their alt text.", 18 "default_title": "Replace all images with their alt text.",
19 "default_icon": { 19 "default_icon": {
20 "19": "images/icon-19.png", 20 "19": "images/icon-19.png",
21 "38": "images/icon-38.png" 21 "38": "images/icon-38.png"
22 } 22 }
23 }, 23 },
24 "options_page": "options.html",
25 "permissions": [ 24 "permissions": [
26 "activeTab" 25 "activeTab"
27 ], 26 ],
28 "manifest_version": 2, 27 "manifest_version": 2,
29 "web_accessible_resources": [ 28 "web_accessible_resources": [
30 "images/speech-16.png", 29 "images/speech-16.png",
31 "images/speech-missing-alt-16.png", 30 "images/speech-missing-alt-16.png",
32 "images/statusbarButtonGlyphs.png" 31 "images/statusbarButtonGlyphs.png"
33 ] 32 ]
34 } 33 }
OLDNEW
« no previous file with comments | « no previous file | ui/accessibility/extensions/alt/options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698