convert standard american english to inglish spelling
view on githubloading rules...
add a floating translate button to any webpage with a single script tag. when visitors click it, all text on the page is translated to inglish. clicking again restores the original english.
paste this line before the closing </body> tag of your HTML:
<script src="https://inglish.us/translate-button.js"></script>
<code>, <pre>, <script>, <style>, <textarea>, and <input> elementsthe script fetches the inglish dictionary (126,000+ words) from inglish.us and does word-by-word lookup on every text node in the page. HTML tags, attributes, and page structure are left untouched. only the visible text changes.
if you prefer to host the files yourself, download translate-button.js and dikshuneree.json, then edit the DICT_URL variable at the top of the script to point to your copy of the dictionary.
here is a minimal HTML page with the translate button:
<!DOCTYPE html> <html> <head> <title>my page</title> </head> <body> <h1>Hello World</h1> <p>The quick brown fox jumps over the lazy dog.</p> <script src="https://inglish.us/translate-button.js"></script> </body> </html>