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

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

Issue 94093013: Add documentation for the chrome.sockets API and manifest key. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address code review feedback. Created 6 years, 11 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
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 },
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 "example": {} 132 "example": {}
133 }, 133 },
134 "sandbox": { 134 "sandbox": {
135 "documentation": "manifest/sandbox.html", 135 "documentation": "manifest/sandbox.html",
136 "example": [] 136 "example": []
137 }, 137 },
138 "short_name": { 138 "short_name": {
139 "documentation": "manifest/name.html#short_name", 139 "documentation": "manifest/name.html#short_name",
140 "example": "Short Name" 140 "example": "Short Name"
141 }, 141 },
142 "sockets": {
143 "documentation": "manifest/sockets.html",
144 "example": {
145 "tcp": { "connect": "*" }, "udp": { "send": "*" }
146 }
147 },
142 "storage": { 148 "storage": {
143 "documentation": "manifest/storage.html", 149 "documentation": "manifest/storage.html",
144 "example": { 150 "example": {
145 "managed_schema": "schema.json" 151 "managed_schema": "schema.json"
146 } 152 }
147 }, 153 },
148 "theme": { 154 "theme": {
149 "documentation": "themes.html", 155 "documentation": "themes.html",
150 "example": {}, 156 "example": {},
151 "level": "only_one" 157 "level": "only_one"
152 }, 158 },
153 "update_url": { 159 "update_url": {
154 "documentation": "autoupdate.html", 160 "documentation": "autoupdate.html",
155 "example": "http://path/to/updateInfo.xml" 161 "example": "http://path/to/updateInfo.xml"
156 }, 162 },
157 "url_handlers": { 163 "url_handlers": {
158 "documentation": "manifest/url_handlers.html", 164 "documentation": "manifest/url_handlers.html",
159 "example": {} 165 "example": {}
160 }, 166 },
161 "version": { 167 "version": {
162 "documentation": "manifest/version.html", 168 "documentation": "manifest/version.html",
163 "example": "versionString", 169 "example": "versionString",
164 "level": "required" 170 "level": "required"
165 }, 171 },
166 "web_accessible_resources": { 172 "web_accessible_resources": {
167 "documentation": "manifest/web_accessible_resources.html", 173 "documentation": "manifest/web_accessible_resources.html",
168 "example": [] 174 "example": []
169 } 175 }
170 } 176 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698