Google-chrome – How to spell check web pages from the browser

firefoxfirefox-extensionsgoogle-chromegoogle-chrome-extensionsspell-check

How can I spell check web pages when browsing them? I've added the After the Deadline Chrome extension, but it only seems to work on forms and not whole web pages. I'm happy to use Firefox if that provides a solution.

Best Answer

In Chrome, open the console by pressing Ctrl + Shift + J. In the console, type the following and hit Enter.

document.body.contentEditable = true;
document.designMode = 'on';

This will make the page editable and the built-in spell checker of Chrome will be able to highlight anything misspelled.

Related Question