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

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: Fixes according to the review 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
« no previous file with comments | « chrome/common/extensions/docs/examples/api/displaySource/tabCast/main.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..b3fc8aa1e898fbb811b3ebdfafd88364c329d506
--- /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": false
+ }
+}
« no previous file with comments | « chrome/common/extensions/docs/examples/api/displaySource/tabCast/main.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698