Regex Search에 대한 리뷰
Regex Search 제작자: Mohd_PH
리뷰 7개
- 5점 만점에 3점Cyberknight 님, 일 년 전It only works in simple Pages, that is, without frames or iframes or any other complex structure.
- 5점 만점에 3점svgPhoenix 님, 5년 전
- I like the recent Highlight feature that's been available since version 1.0.4 (for some reason only available as a download from the author's GitHub page), but it has one side-effect that has a massive potential of breaking websites. The highlight is not only applied to visible text within tags, but to the whole page ( document.body.innerHTML ). This can break inline JavaScript, link references and all kinds of other things as well if a match is found, which sadly makes it unusable as the multi-word highlighter that I've been looking for.
For other use cases, such as extracting data from the page source, it's a neat extension but I have no such requirements myself. - 5점 만점에 3점Firefox 사용자 13561551 님, 8년 전Does what it promises. Would be great if you could explain the functionality a little bit more. I cant get my head around the template thing.
개발자 답글
8년 전에 게시됨Thank for the review. as for the template you can use $x (x is the number of the group in your regex e.g: $1 $2 ... etc) and $n ( for new line), you can also use \ instead of $ ($x to \x or $n to \n) - 5점 만점에 3점Firefox 사용자 12649868 님, 8년 전This extension doesn't do a great job at explaining what it is. I was hoping to be able to search for an expression and highlight results on the page, like cmd+F but with regex instead of simple string matching. This extension basically just greps the HTML for your expression and gives the results.