This Chrome extension allows you to add a particular word from Merriam Webster to a Supabase database!
-
Create a Supabase account- assign any name for the organisation and project.
-
In the SQL editor in Supabase, paste the following query and run it:
CREATE TABLE words (
id serial PRIMARY KEY,
word text NOT NULL,
meaning text[] NOT NULL
);
- Clone the GitHub repository
git clone https://github.com/SonakshiA/WebsterSync.git
-
You will find the Project URL and the API Key in the Home section of Supabase, paste those in the script.js file.
-
Paste the Project URL under the host_permissions section in the manifest.json file.
-
Open Chrome and select the three dots on the top right corner, from the dropdown, choose the 'Extensions' tab and select 'Manage Extensions'.
-
Click on 'Load unpacked' and select the webstersync repo.
-
Navigate to any Merriam-Webster word page (e.g., https://www.merriam-webster.com/dictionary/ponder).
-
Click the extension icon to extract the word and its meaning.
-
The word and its meaning will be stored in your Supabase database.
-
You can access the stored words from the Table Editor section in Supabase. The 'words' table is present there.