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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/examples/howto/sandbox/manifest.json
diff --git a/chrome/common/extensions/docs/examples/howto/sandbox/manifest.json b/chrome/common/extensions/docs/examples/howto/sandbox/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..405ba9f99b150c09fb35226172ca32511fb0b4a7
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/howto/sandbox/manifest.json
@@ -0,0 +1,18 @@
+{
+ "name": "Sandboxed Frame",
+ "version": "1.0",
+ "manifest_version": 2,
+ "permissions": ["notifications"],
+ "background": {
+ "page": "eventpage.html",
+ "persistent": false
+ },
+ "browser_action": {
+ "default_icon" : "icon.png",
+ "default_title": "Start Event Page"
+ },
+ "sandbox": {
+ "pages": ["sandbox.html"]
+ },
+ "web_accessible_resources": ["icon.png"]
+}

Powered by Google App Engine
This is Rietveld 408576698