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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "name": "tabCast",
3 "version": "0.1",
4 "manifest_version": 2,
5 "description": "Creates a WiFi Display Session from the captured tab media str eam using chrome.displaySource API.",
6 "permissions": [
7 "tabCapture", "tabs", "displaySource"
8 ],
9 "browser_action": {
10 "default_title": "Tab cast",
11 "default_popup": "main.html"
12 },
13 "background": {
14 "scripts": ["background.js"],
15 "persistent": true
asargent_no_longer_on_chrome 2016/03/17 19:24:29 Does this feature work with event pages, e.g. spec
16 }
17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698