()
| 263 | }, |
| 264 | |
| 265 | goNext() { |
| 266 | const nextPatterns = Settings.get("nextPatterns") || ""; |
| 267 | const nextStrings = nextPatterns.split(",").filter((s) => s.trim().length); |
| 268 | const target = findElementWithRelValue("next") || findLink(nextStrings); |
| 269 | if (target) followLink(target); |
| 270 | }, |
| 271 | |
| 272 | focusInput(count) { |
| 273 | // Focus the first input element on the page, and create overlays to highlight all the input |
nothing calls this directly
no test coverage detected