summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/extensions/docs/examples/api/webview/capturevisibleregion/manifest.json
blob: 6b27ec4102fa3b3966fe89ba28d2ac57120206aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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" ]
      }
    ]
  }
}