(...args)
| 3 | const DEBUG = false; // Set to true for debugging |
| 4 | |
| 5 | function log(...args) { |
| 6 | if (DEBUG) { |
| 7 | console.log('[Stream Panel Content]', ...args); |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | const script = document.createElement('script'); |
| 12 | script.src = chrome.runtime.getURL('inject.js'); |