This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
huegasm/chrome/public/background.js
2017-02-15 23:44:58 -08:00

11 lines
No EOL
355 B
JavaScript

chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
if (request.action === 'start-listen') {
chrome.tabCapture.capture({
audio: true,
video: false
}, function (stream) {
console.log('stream', stream);
//I can attach all my filter here...
});
}
});