A chrome extension that lets you scrape, highlight/underline, and export articles you see online as debate cards. Inspired by Cardr.
Based on this template by @NekitCorp.
- Svelte - UI framework
- TypeScript - Better than JavaScript
- Vite - Bundler
- Chrome Extensions Manifest V3 - Chrome extension standard
- Readability - Webpage scraper
- Go to releases and download
Evidencer.crx
. - Open the Extension Management page by navigating to
chrome://extensions
. - Drag
Evidencer.crx
on the page and clickAdd Extension
. - Reload any websites that you want to use with the extension.
- Go to releases and download
EvidencerUnpacked.zip
, and unzip the file. - Open the Extension Management page by navigating to
chrome://extensions
. - Enable developer mode by clicking the toggle switch next to
Developer mode
. - Click the
Load unpacked
button and select the unzippedEvidencerUnpacked
folder. - Reload any websites that you want to use with the extension.
- Clone the repository and build the extension.
# download repo
git clone https://github.com/Ashwagandhae/evidencer.git
cd evidencer
# install dependencies
npm i
# build files to `/dist` folder
npm run build
- Open the Extension Management page by navigating to
chrome://extensions
. - Enable developer mode by clicking the toggle switch next to
Developer mode
. - Click the
Load unpacked
button and select thedist
folder. - Reload any websites that you want to use with the extension.
# download repo
git clone https://github.com/Ashwagandhae/evidencer.git
cd evidencer
# install dependencies
npm i
# build files to `/dist` directory
# vite.build.watch rebuilds when modules have changed on disk
npm run dev