| 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..c42e0eff5d00fb23e5b4dbc5de88868b16f513d2
|
| --- /dev/null
|
| +++ b/chrome/common/extensions/docs/examples/extensions/plugin_settings/manifest.json
|
| @@ -0,0 +1,16 @@
|
| +{
|
| + "name" : "__MSG_extName__",
|
| + "version" : "0.6",
|
| + "description" : "__MSG_extDescription__",
|
| + "options_page": "options.html",
|
| + "permissions": [
|
| + "contentSettings"
|
| + ],
|
| + "icons": {
|
| + "128": "bunny128.png",
|
| + "48": "bunny48.png"
|
| + },
|
| + "minimum_chrome_version": "16.0.912",
|
| + "content_security_policy": "default-src 'none'; script-src 'self'; img-src 'self'; style-src 'self'",
|
| + "default_locale": "en"
|
| +}
|
|
|