DEV Community

Discussion on: Grammarly won't work in dev.to?

Collapse
 
andy profile image
Andy Zhao (he/him)

👋 We disabled Grammarly for the time being because there was an error on their end that disabled the post editor text field. I don't think Grammarly has made a fix lately, but maybe it has?

I believe it was only for Chromium based browsers though, so Grammarly should work on Firefox.

If you want to re-enable Grammarly manually, you can run this snippet in your browser console. However, I'm not sure if it will allow the editor to work 😬

document.querySelector('textarea').dataset.gramm_editor = "true"
Enter fullscreen mode Exit fullscreen mode

More details in this issue: github.com/forem/forem/issues/13814

Collapse
 
gokatz profile image
Gokul Kathirvel

Thanks for the info, Andy. Will See if I can use your snippet