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

Side by Side Diff: ui/accessibility/extensions/longdesc/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
OLDNEW
1 { 1 {
2 "name": "An Extension", 2 "name": "__MSG_appName__",
3 "version": "0.1", 3 "version": "0.1",
4 "description": "An extension to modify the context menu when an HTML element c ontains a aria-describedat and/or longdesc property.", 4 "description": "__MSG_appDesc__",
5 "background": { 5 "background": {
6 "scripts": [ "background.js" ] 6 "scripts": [ "background.js" ]
7 }, 7 },
8 "content_scripts": [{ 8 "content_scripts": [{
9 "matches": ["<all_urls>"], 9 "matches": ["<all_urls>"],
10 "js": ["lastRightClick.js"] 10 "js": ["lastRightClick.js"]
11 }], 11 }],
12 "icons": { 12 "icons": {
13 "16": "icon.png" 13 "16": "icon.png"
14 }, 14 },
15 "permissions": [ 15 "permissions": [
16 "tabs", 16 "tabs",
17 "contextMenus", 17 "contextMenus",
18 "storage", 18 "storage",
19 "<all_urls>" 19 "<all_urls>"
20 ], 20 ],
21 "manifest_version": 2, 21 "manifest_version": 2,
22 "options_page": "options.html" 22 "options_page": "options.html"
23 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698