Robert Vitonsky
Robert Vitonsky
@WofWca i agree with you about shortcut to open extension popup, so we can research suit shortcuts combination and use command API to implement this feature. But other features like...
We can detect page language only when page will loaded. Context menu contains button to control page translation state and show current state. What exactly behavior you are expects if...
We can do it locally with https://github.com/robertknight/tesseract-wasm Demo page: https://robertknight.github.io/tesseract-wasm/
Another solution https://tesseract.projectnaptha.com/ for alternative way
We have to research where we have to find a models for another languages
@bbb651 hi, i like that you've mention a potential solutions to implement the feature you mention. It is important part of skills for a strong researcher. I like your idea,...
Yes, we have this feature in [roadmap](https://github.com/translate-tools/linguist/blob/master/ROADMAP.md) "Picker of nodes to enable/disable translation". It's not very trivial to implement, so i can't promise you that it will be implemented in...
Snippet to generate CSS path for element ```js function getCSSPath(elm) { const parts = []; let currentElm = elm; while (currentElm) { let segmentId = currentElm.tagName.toLowerCase(); segmentId += currentElm.id ?...
Selectors edge cases: # MDN We have to escape entities or eliminate invalid values. Source https://developer.mozilla.org/en-US/docs/Web/API/Element/matches `html body div#root div.page-wrapper.category-api.document-page div.main-wrapper main#content.main-content article.main-page-content section div.section-content div.code-example pre.brush:.js.notranslate code` 
We can use matches API https://developer.mozilla.org/en-US/docs/Web/API/Element/matches to fast check element should be ignored