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

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

Issue 1109203003: Update version of existing curated accessibility extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « ui/accessibility/extensions/highcontrast/manifest.json ('k') | no next file » | 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": "__MSG_LONGDESC_APPNAME__", 2 "name": "__MSG_LONGDESC_APPNAME__",
3 "version": "1.0.1", 3 "version": "1.0.2",
4 "description": "__MSG_LONGDESC_APPDESC__", 4 "description": "__MSG_LONGDESC_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 "css": ["border.css"] 11 "css": ["border.css"]
12 }], 12 }],
13 "icons": { 13 "icons": {
14 "16": "icon.png" 14 "16": "icon.png"
15 }, 15 },
16 "permissions": [ 16 "permissions": [
17 "tabs", 17 "tabs",
18 "contextMenus", 18 "contextMenus",
19 "storage", 19 "storage",
20 "<all_urls>" 20 "<all_urls>"
21 ], 21 ],
22 "manifest_version": 2, 22 "manifest_version": 2,
23 "default_locale": "en", 23 "default_locale": "en",
24 "options_page": "options.html", 24 "options_page": "options.html",
25 "icons": { 25 "icons": {
26 "16": "icon-16.png", 26 "16": "icon-16.png",
27 "48": "icon-48.png", 27 "48": "icon-48.png",
28 "128": "icon-128.png" 28 "128": "icon-128.png"
29 } 29 }
30 } 30 }
OLDNEW
« no previous file with comments | « ui/accessibility/extensions/highcontrast/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698