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

Unified Diff: chrome/common/extensions/docs/examples/extensions/plugin_settings/manifest.json

Issue 8396001: Add sample extension that allows setting plugin-specific content settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 9 years, 2 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/extensions/plugin_settings/manifest.json
diff --git a/chrome/common/extensions/docs/examples/extensions/plugin_settings/manifest.json b/chrome/common/extensions/docs/examples/extensions/plugin_settings/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..54a9fe7d6fe7c0813644dca9521018efa0218314
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/extensions/plugin_settings/manifest.json
@@ -0,0 +1,16 @@
+{
+ "name" : "Per-plugin content settings",
Mike West 2011/10/25 19:52:06 Might as well localize the name and description, s
Bernhard Bauer 2011/10/26 13:55:18 Done.
+ "version" : "0.3",
+ "description" : "Allows you customize your content setting for different plug-ins.",
+ "options_page": "options.html",
+ "permissions": [
+ "contentSettings"
+ ],
+ "icons": {
+ "128": "bunny128.png",
+ "48": "bunny48.png"
+ },
+ "minimum_chrome_version": "16.0.912",
+ "content_security_policy": "default-src 'self' ",
Mike West 2011/10/25 19:52:06 You used `content_security_policy`! Hooray you! I
Bernhard Bauer 2011/10/26 13:55:18 Done, but I also added img-src 'self' for the "X"
+ "default_locale": "en"
+}

Powered by Google App Engine
This is Rietveld 408576698