Save your words in a pocket dictionary!
Wordsave uses indexedDB for storing word objects.
The extension is currently only supported on Chrome and Chromium browsers and is not intended to be used on mobile. It uses dictionaryapi.dev for word lookups and built-in Chrome text-to-speech API for voice synthesis.
The dictionaryapi uses the Wiktionary freely available word definitions, which are created and maintained by internet volunteers. If there is enough demand, the API may be changed to a more reputable online dictionary like Merriam-Webster.
Support the API developer here:
Wordsave uses tailwind for certain styles
npm install tailwindcss
npx tailwindcss init
Replace contents of tailwind.config.js with
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./**/*.{html,js}", // Include all HTML and JS files
"!./node_modules/**", // Exclude the entire node_modules folder
],
theme: {
extend: {},
},
plugins: [],
};
To compile:
npx tailwindcss -o css/tailwind.css --minify
or unminified with:
npx tailwindcss -o css/tailwind.css
chrome://extensions
This project is licensed under the Mozilla Public License. Feel free to use, modify, distribute for commercial and non-commercial uses.