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

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

Issue 593293002: Initial checkin of accessibility extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix license issues 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
(Empty)
1 {
2 "name": "An Extension",
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.",
5 "background": {
6 "scripts": [ "background.js" ]
7 },
8 "content_scripts": [{
9 "matches": ["<all_urls>"],
10 "js": ["lastRightClick.js"]
11 }],
12 "icons": {
13 "16": "icon.png"
14 },
15 "permissions": [
16 "tabs",
17 "contextMenus",
18 "storage",
19 "<all_urls>"
20 ],
21 "manifest_version": 2,
22 "options_page": "options.html"
23 }
OLDNEW
« no previous file with comments | « ui/accessibility/extensions/longdesc/lastRightClick.js ('k') | ui/accessibility/extensions/longdesc/options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698