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

Side by Side 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, 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": "__MSG_appName__",
3 "version": "0.3",
4 "description": "__MSG_appDesc__",
5 "manifest_version": 2,
6 "permissions": [
7 "<all_urls>",
8 "storage",
9 "tabs"
10 ],
11 "background": {
12 "scripts": [
13 "background.js"
14 ]
15 },
16 "browser_action": {
17 "default_icon": "caret_19.png",
18 "default_title": "Turn On Caret Browsing (Alt+F7)"
19 },
20 "content_scripts": [
21 {
22 "matches": [
23 "<all_urls>"
24 ],
25 "all_frames": true,
26 "css": [
27 "caretbrowsing.css"
28 ],
29 "js": [
30 "accessibility_utils.js",
31 "traverse_util.js",
32 "caretbrowsing.js"
33 ]
34 }
35 ],
36 "default_locale": "en",
37 "icons": {
38 "16": "caret_16.png",
39 "48": "caret_48.png",
40 "128": "caret_128.png"
41 },
42 "options_page": "options.html"
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698