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

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

Issue 189263004: Bluetooth: write documentation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 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 "bluetooth": {
20 "documentation": "manifest/bluetooth.html",
21 "example": {
22 "profiles": [ "1105", "1006" ]
23 }
24 },
25 "browser_action": {
20 "documentation": "browserAction.html", 26 "documentation": "browserAction.html",
21 "example": {}, 27 "example": {},
22 "level": "only_one" 28 "level": "only_one"
23 }, 29 },
24 "chrome_settings_overrides": { 30 "chrome_settings_overrides": {
25 "documentation": "settings_override.html", 31 "documentation": "settings_override.html",
26 "example": {} 32 "example": {}
27 }, 33 },
28 "chrome_ui_overrides": { 34 "chrome_ui_overrides": {
29 "documentation": "ui_override.html", 35 "documentation": "ui_override.html",
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 "version": { 186 "version": {
181 "documentation": "manifest/version.html", 187 "documentation": "manifest/version.html",
182 "example": "versionString", 188 "example": "versionString",
183 "level": "required" 189 "level": "required"
184 }, 190 },
185 "web_accessible_resources": { 191 "web_accessible_resources": {
186 "documentation": "manifest/web_accessible_resources.html", 192 "documentation": "manifest/web_accessible_resources.html",
187 "example": [] 193 "example": []
188 } 194 }
189 } 195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698