A browser extension that allows you to view and manage your bookmarks right from your browser's start page
- Install VS Code
- Install Vue Language Features extension
- Follow instructions for disabling VSCode's Typescript and Javascript Language Features for this workspace.
- Install ESLint extension
- Install Tailwind CSS IntelliSense extension
- Install Vue Language Features extension
-
-
- Runs
web-ext run
andvite build
to reload the extension and rebuild on file changes- Note that this does not include type checking in favor of faster feedback when developing. Type checking during development relies on the Vue Language Features extension.
- Runs
-
- Runs vitest to run unit tests
-
- Builds, type checks, and packages the extension
-
-
- App
- Combines components with composables to make up the UI
- Services
- Combines data access and other services into a clean interface for the app
- Data
- Used by services to access data from the Web Extensions API and localStorage
- App
-
- Run
npm install
- Run
npm run dev
- Open Firefox and go to
about:debugging
- Select This Firefox
- Select Load Temporary Add-on...
- Select the manifest.json file in the dist directory and select Open
- Open a new tab and you will see 'marks
- Run
-
- Run
npm install
- Run
npm run dev
- Open Chrome and go to
chrome://extensions/
- Toggle Developer mode on
- Select Load unpacked
- Select the dist directory and select Open
- Open a new tab and you will see 'marks
- Run