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

Unified Diff: chrome/common/extensions/docs/examples/api/devtools/inspectedWindow/chrome-preprocessor/manifest.json

Issue 23892003: Sample Extension for chrome.devtools.inspectedWindow.reload preprocessor option (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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/api/devtools/inspectedWindow/chrome-preprocessor/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/devtools/inspectedWindow/chrome-preprocessor/manifest.json b/chrome/common/extensions/docs/examples/api/devtools/inspectedWindow/chrome-preprocessor/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..bb6fc9e80aedc8186ae65d93221078be9442c91e
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/devtools/inspectedWindow/chrome-preprocessor/manifest.json
@@ -0,0 +1,12 @@
+{
+ "name": "Chrome Preprocessor Example",
+ "version": "0.1",
+ "description": "Simple hello-world example for chrome.devtools.inspectedWindow.reload() using preprocessor.",
+ "devtools_page": "chrome-preprocessor.html",
+ "manifest_version": 2,
+ "content_security_policy": "default-src 'self' chrome-extension-resource: 'unsafe-eval'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; connect-src *; frame-src *;",
Mike West 2013/09/04 08:54:37 'unsafe-eval' has no effect in the 'default-src' d
+ "web_accessible_resources":
+ [
+ "*"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698