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

Unified Diff: chrome/common/extensions/docs/examples/api/displaySource/tabCast/manifest.json

Issue 1812813002: [chrome.displaySource] Add example extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/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
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698