Skip to content

This Chrome extension allows you to add a particular word from Merriam Webster to a Supabase database!

License

Notifications You must be signed in to change notification settings

SonakshiA/WebsterSync

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WebsterSync

This Chrome extension allows you to add a particular word from Merriam Webster to a Supabase database!

Usage

  1. Create a Supabase account- assign any name for the organisation and project.

  2. 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
);
  1. Clone the GitHub repository
git clone https://github.com/SonakshiA/WebsterSync.git
  1. You will find the Project URL and the API Key in the Home section of Supabase, paste those in the script.js file.

  2. Paste the Project URL under the host_permissions section in the manifest.json file.

  3. Open Chrome and select the three dots on the top right corner, from the dropdown, choose the 'Extensions' tab and select 'Manage Extensions'.

  4. Click on 'Load unpacked' and select the webstersync repo.

  5. Navigate to any Merriam-Webster word page (e.g., https://www.merriam-webster.com/dictionary/ponder).

  6. Click the extension icon to extract the word and its meaning.

  7. The word and its meaning will be stored in your Supabase database.

  8. You can access the stored words from the Table Editor section in Supabase. The 'words' table is present there.

About

This Chrome extension allows you to add a particular word from Merriam Webster to a Supabase database!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published