Index: ui/accessibility/extensions/caretbrowsing/manifest.json |
diff --git a/ui/accessibility/extensions/caretbrowsing/manifest.json b/ui/accessibility/extensions/caretbrowsing/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c790109dd5880164c8958c4a256f8102ef6b2e2f |
--- /dev/null |
+++ b/ui/accessibility/extensions/caretbrowsing/manifest.json |
@@ -0,0 +1,43 @@ |
+{ |
+ "name": "__MSG_appName__", |
+ "version": "0.3", |
+ "description": "__MSG_appDesc__", |
+ "manifest_version": 2, |
+ "permissions": [ |
+ "<all_urls>", |
+ "storage", |
+ "tabs" |
+ ], |
+ "background": { |
+ "scripts": [ |
+ "background.js" |
+ ] |
+ }, |
+ "browser_action": { |
+ "default_icon": "caret_19.png", |
+ "default_title": "Turn On Caret Browsing (Alt+F7)" |
+ }, |
+ "content_scripts": [ |
+ { |
+ "matches": [ |
+ "<all_urls>" |
+ ], |
+ "all_frames": true, |
+ "css": [ |
+ "caretbrowsing.css" |
+ ], |
+ "js": [ |
+ "accessibility_utils.js", |
+ "traverse_util.js", |
+ "caretbrowsing.js" |
+ ] |
+ } |
+ ], |
+ "default_locale": "en", |
+ "icons": { |
+ "16": "caret_16.png", |
+ "48": "caret_48.png", |
+ "128": "caret_128.png" |
+ }, |
+ "options_page": "options.html" |
+} |