Index: chrome/common/extensions/docs/examples/api/displaySource/tabCast/manifest.json |
diff --git a/chrome/common/extensions/docs/examples/api/displaySource/tabCast/manifest.json b/chrome/common/extensions/docs/examples/api/displaySource/tabCast/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3bf62ebedd092cec9fb297619e43c68846b4a039 |
--- /dev/null |
+++ b/chrome/common/extensions/docs/examples/api/displaySource/tabCast/manifest.json |
@@ -0,0 +1,17 @@ |
+{ |
+ "name": "tabCast", |
+ "version": "0.1", |
+ "manifest_version": 2, |
+ "description": "Creates a WiFi Display Session from the captured tab media stream using chrome.displaySource API.", |
+ "permissions": [ |
+ "tabCapture", "tabs", "displaySource" |
+ ], |
+ "browser_action": { |
+ "default_title": "Tab cast", |
+ "default_popup": "main.html" |
+ }, |
+ "background": { |
+ "scripts": ["background.js"], |
+ "persistent": true |
asargent_no_longer_on_chrome
2016/03/17 19:24:29
Does this feature work with event pages, e.g. spec
|
+ } |
+} |