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

Unified 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 side-by-side diff with in-line comments
Download patch
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" ]
+ }
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698