OLD | NEW |
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": { | 24 "chrome_settings_overrides": { |
25 "documentation": "settings_override.html", | 25 "documentation": "settings_override.html", |
26 "example": {} | 26 "example": {} |
27 }, | 27 }, |
| 28 "chrome_ui_overrides": { |
| 29 "documentation": "ui_override.html", |
| 30 "example": { |
| 31 "bookmarks_ui": { |
| 32 "remove_button": true, |
| 33 "remove_bookmark_shortcut": true |
| 34 } |
| 35 } |
| 36 }, |
28 "chrome_url_overrides": { | 37 "chrome_url_overrides": { |
29 "documentation": "override.html", | 38 "documentation": "override.html", |
30 "example": {} | 39 "example": {} |
31 }, | 40 }, |
32 "content_scripts": { | 41 "content_scripts": { |
33 "documentation": "content_scripts.html", | 42 "documentation": "content_scripts.html", |
34 "example": [{}] | 43 "example": [{}] |
35 }, | 44 }, |
36 "content_security_policy": { | 45 "content_security_policy": { |
37 "documentation": "contentSecurityPolicy.html", | 46 "documentation": "contentSecurityPolicy.html", |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 "version": { | 180 "version": { |
172 "documentation": "manifest/version.html", | 181 "documentation": "manifest/version.html", |
173 "example": "versionString", | 182 "example": "versionString", |
174 "level": "required" | 183 "level": "required" |
175 }, | 184 }, |
176 "web_accessible_resources": { | 185 "web_accessible_resources": { |
177 "documentation": "manifest/web_accessible_resources.html", | 186 "documentation": "manifest/web_accessible_resources.html", |
178 "example": [] | 187 "example": [] |
179 } | 188 } |
180 } | 189 } |
OLD | NEW |