(...args)
| 7 | const DEBUG = false; // Set to true for debugging |
| 8 | |
| 9 | function log(...args) { |
| 10 | if (DEBUG) { |
| 11 | console.log('[Stream Panel Background]', ...args); |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | // Handle connections from DevTools panels |
| 16 | chrome.runtime.onConnect.addListener(function(port) { |