diff options
Diffstat (limited to 'extension')
| -rw-r--r-- | extension/background.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/extension/background.js b/extension/background.js index c02d8d5..750e8a9 100644 --- a/extension/background.js +++ b/extension/background.js @@ -115,7 +115,7 @@ const router = {              return (tab.title + "\n").substr(offset, size);            }          }, -        "text": { +        "document.body.innerText.txt": {            async read(path, fh, size, offset) {              const tabId = parseInt(pathComponent(path, -2));              if (!debugged[tabId]) { @@ -128,7 +128,7 @@ const router = {              return result.value.substr(offset, size)            }          }, -        "tree": { +        "resources": {            async opendir(path) {              const tabId = parseInt(pathComponent(path, -2));              if (!debugged[tabId]) { | 
