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

Side by Side Diff: chrome/common/extensions/docs/examples/howto/sandbox/manifest.json

Issue 10810054: Describing the `sandbox` workflow for extension developers. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 8 years, 5 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
(Empty)
1 {
2 "name": "Sandboxed Frame",
3 "version": "1.0",
4 "manifest_version": 2,
5 "permissions": ["notifications"],
6 "background": {
7 "page": "eventpage.html",
8 "persistent": false
9 },
10 "browser_action": {
11 "default_icon" : "icon.png",
12 "default_title": "Start Event Page"
13 },
14 "sandbox": {
15 "pages": ["sandbox.html"]
16 },
17 "web_accessible_resources": ["icon.png"]
18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698