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

Side by Side Diff: chrome/common/extensions/docs/templates/json/manifest.json

Issue 143493005: Allow extensions to remove and override the bookmark shortcut key (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove use of GetActiveDesktop() Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "app": { 2 "app": {
3 "documentation": "manifest/app.html", 3 "documentation": "manifest/app.html",
4 "example": {}, 4 "example": {},
5 "level": "required" 5 "level": "required"
6 }, 6 },
7 "app.background": { 7 "app.background": {
8 "example": {"scripts": ["background.js"]}, 8 "example": {"scripts": ["background.js"]},
9 "level": "required" 9 "level": "required"
10 }, 10 },
11 "background": { 11 "background": {
12 "documentation": "background_pages.html" 12 "documentation": "background_pages.html"
13 }, 13 },
14 "background.persistent": { 14 "background.persistent": {
15 "documentation": "event_pages.html", 15 "documentation": "event_pages.html",
16 "example": false, 16 "example": false,
17 "level": "recommended" 17 "level": "recommended"
18 }, 18 },
19 "browser_action": { 19 "browser_action": {
20 "documentation": "browserAction.html", 20 "documentation": "browserAction.html",
21 "example": {}, 21 "example": {},
22 "level": "only_one" 22 "level": "only_one"
23 }, 23 },
24 "chrome_settings_overrides": {
25 "documentation": "settings_override.html",
26 "example": {}
27 },
24 "chrome_url_overrides": { 28 "chrome_url_overrides": {
25 "documentation": "override.html", 29 "documentation": "override.html",
26 "example": {} 30 "example": {}
27 }, 31 },
28 "content_scripts": { 32 "content_scripts": {
29 "documentation": "content_scripts.html", 33 "documentation": "content_scripts.html",
30 "example": [{}] 34 "example": [{}]
31 }, 35 },
32 "content_security_policy": { 36 "content_security_policy": {
33 "documentation": "contentSecurityPolicy.html", 37 "documentation": "contentSecurityPolicy.html",
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 "version": { 171 "version": {
168 "documentation": "manifest/version.html", 172 "documentation": "manifest/version.html",
169 "example": "versionString", 173 "example": "versionString",
170 "level": "required" 174 "level": "required"
171 }, 175 },
172 "web_accessible_resources": { 176 "web_accessible_resources": {
173 "documentation": "manifest/web_accessible_resources.html", 177 "documentation": "manifest/web_accessible_resources.html",
174 "example": [] 178 "example": []
175 } 179 }
176 } 180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698