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

Unified Diff: ui/accessibility/extensions/caretbrowsing/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/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"
+}

Powered by Google App Engine
This is Rietveld 408576698