Skip to content

Ashwagandhae/evidencer

Repository files navigation

Evidencer

Screenshot

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.

Built with

Usage

Simple install

  1. Go to releases and download Evidencer.crx.
  2. Open the Extension Management page by navigating to chrome://extensions.
  3. Drag Evidencer.crx on the page and click Add Extension.
  4. Reload any websites that you want to use with the extension.

Unpacked install

  1. Go to releases and download EvidencerUnpacked.zip, and unzip the file.
  2. Open the Extension Management page by navigating to chrome://extensions.
  3. Enable developer mode by clicking the toggle switch next to Developer mode.
  4. Click the Load unpacked button and select the unzipped EvidencerUnpacked folder.
  5. Reload any websites that you want to use with the extension.

Build from source

  1. 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
  1. Open the Extension Management page by navigating to chrome://extensions.
  2. Enable developer mode by clicking the toggle switch next to Developer mode.
  3. Click the Load unpacked button and select the dist folder.
  4. Reload any websites that you want to use with the extension.

Develop

# 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