Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

spell check the entire web page/site

  • 4 trả lời
  • 0 gặp vấn đề này
  • 21 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

Is it possible to spell check the entire web page using both Hunspell built-in dictionaries and user-defined dictionaries *.dic, already prepared text in Firefox. As it is done in text editors like Libre Office (also uses Hunspell) but for web site, checking the text from top to bottom with errors in a separate window, so spell check is not only in the text input/search field.

Is it possible to spell check the entire web page using both Hunspell built-in dictionaries and user-defined dictionaries *.dic, already prepared text in Firefox. As it is done in text editors like Libre Office (also uses Hunspell) but for web site, checking the text from top to bottom with errors in a separate window, so spell check is not only in the text input/search field.

Giải pháp được chọn

You can possibly switch the page to design mode (contentEditable) mode via a JavaScript bookmarklet (you may have to click in the page). javascript:void(document.body.contentEditable=document.body.contentEditable=='true'?'false':'true');

You can also get the page content and check that for errors, but that may not work properly with missing line breaks.

javascript:void(prompt(,document.body.textContent))
Đọc câu trả lời này trong ngữ cảnh 👍 2

Tất cả các câu trả lời (4)

more options

AFAIK-Firefox doesn't spellcheck nor can it correct site spelling error those are from the webmaster to fix - only words you type in error can spell check help with.

https://support.mozilla.org/en-US/kb/how-do-i-use-firefox-spell-checker https://support.mozilla.org/bm/questions/1337289

more options

Giải pháp được chọn

You can possibly switch the page to design mode (contentEditable) mode via a JavaScript bookmarklet (you may have to click in the page). javascript:void(document.body.contentEditable=document.body.contentEditable=='true'?'false':'true');

You can also get the page content and check that for errors, but that may not work properly with missing line breaks.

javascript:void(prompt(,document.body.textContent))
more options

cor-el said

You can possibly switch the page to design mode (contentEditable) mode via a JavaScript bookmarklet (you may have to click in the page). javascript:void(document.body.contentEditable=document.body.contentEditable=='true'?'false':'true'); You can also get the page content and check that for errors, but that may not work properly with missing line breaks. javascript:void(prompt(,document.body.textContent))

Great, thanks for the reply! Perhaps there is a way/script to quickly move the cursor from one error to another in such design mode?

Được chỉnh sửa bởi nz-b vào

more options

contentEditable is what is used by a rich text editor like TinyMC (i.e. you can edit text in this mode), there is no way to jump to an error AFAIK.

You can make it easier to spot errors as you can create ui.SpellCheckerUnderline prefs to specify the appearance of errors (try Style:4 or Style:3 and RelativeSize:300).

ui.SpellCheckerUnderline (#FF0000)(String)
ui.SpellCheckerUnderlineStyle (5) [0:none 1:dotted 2:dashed 3:solid 4:double 5:wavy]
ui.SpellCheckerUnderlineRelativeSize (100|200)