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" |
+} |