| Index: chrome/common/extensions/docs/examples/api/webview/capturevisibleregion/manifest.json
|
| diff --git a/chrome/common/extensions/docs/examples/api/webview/capturevisibleregion/manifest.json b/chrome/common/extensions/docs/examples/api/webview/capturevisibleregion/manifest.json
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6b27ec4102fa3b3966fe89ba28d2ac57120206aa
|
| --- /dev/null
|
| +++ b/chrome/common/extensions/docs/examples/api/webview/capturevisibleregion/manifest.json
|
| @@ -0,0 +1,22 @@
|
| +{
|
| + "manifest_version": 2,
|
| + "name": "Webview transparency",
|
| + "description": "Sample of the webview.captureVisibleRegion api",
|
| + "version": "1",
|
| + "app": {
|
| + "background": {
|
| + "scripts": ["main.js"]
|
| + }
|
| + },
|
| + "permissions": [
|
| + "webview"
|
| + ],
|
| + "webview": {
|
| + "partitions": [
|
| + {
|
| + "name": "partition",
|
| + "accessible_resources": [ "test2.html" ]
|
| + }
|
| + ]
|
| + }
|
| +}
|
|
|