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

Side by Side Diff: chrome/common/extensions/docs/examples/api/webview/capturevisibleregion/manifest.json

Issue 1869533002: Add webview sample for captureVisibleRegion(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "manifest_version": 2,
3 "name": "Webview transparency",
4 "description": "Sample of the webview.captureVisibleRegion api",
5 "version": "1",
6 "app": {
7 "background": {
8 "scripts": ["main.js"]
9 }
10 },
11 "permissions": [
12 "webview"
13 ],
14 "webview": {
15 "partitions": [
16 {
17 "name": "partition",
18 "accessible_resources": [ "test2.html" ]
19 }
20 ]
21 }
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698