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

Unified 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, 3 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 side-by-side diff with in-line comments
Download patch
Index: ui/accessibility/extensions/longdesc/manifest.json
diff --git a/ui/accessibility/extensions/longdesc/manifest.json b/ui/accessibility/extensions/longdesc/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..31fbc2166a89f201bc3f183bcc9d63f6ef524340
--- /dev/null
+++ b/ui/accessibility/extensions/longdesc/manifest.json
@@ -0,0 +1,23 @@
+{
+ "name": "An Extension",
+ "version": "0.1",
+ "description": "An extension to modify the context menu when an HTML element contains a aria-describedat and/or longdesc property.",
+ "background": {
+ "scripts": [ "background.js" ]
+ },
+ "content_scripts": [{
+ "matches": ["<all_urls>"],
+ "js": ["lastRightClick.js"]
+ }],
+ "icons": {
+ "16": "icon.png"
+ },
+ "permissions": [
+ "tabs",
+ "contextMenus",
+ "storage",
+ "<all_urls>"
+ ],
+ "manifest_version": 2,
+ "options_page": "options.html"
+}
« 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