* Start the DOM Observer * * @param {number} tabId
(tabId)
| 192 | * @param {number} tabId |
| 193 | */ |
| 194 | async function startDOMObserver(tabId) { |
| 195 | let connection = await getScriptConnection("content", tabId); |
| 196 | console.log("Starting DOM Observer...") |
| 197 | await connection.startDOMObserver(); |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Stop the DOM Observer |
no test coverage detected