Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |