Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kfields/bbex
Better Bookmark EXtension
https://github.com/kfields/bbex
Last synced: 3 days ago
JSON representation
Better Bookmark EXtension
- Host: GitHub
- URL: https://github.com/kfields/bbex
- Owner: kfields
- Created: 2020-05-11T22:40:25.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T05:33:13.000Z (almost 2 years ago)
- Last Synced: 2023-04-04T15:53:21.674Z (over 1 year ago)
- Language: Vue
- Homepage:
- Size: 851 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BBEX (bbex)
Better Bookmark EXtension
## Motivation
I wrote this for [Quasar's](https://quasar.dev/) Hack-a-May contest to try out their BEX (Browser Extension) support. (Great work guys!)
This is also an opportunity to give back to the community. Hopefully someone can use this code in their own programs
## Problem
I've been wanting to write something like this for a long time. I have almost 1400 bookmarks that I must have created for some reason. Lol
The problem is finding them again. Folders are almost useless. Tagging is better but tedious
## Solution
Automatically tag bookmarks or any URL for that matter
## Challenges
Need to find a way to tag URLs automatically
## Implementation
Use Dexie for storing data about bookmarks/URLs. Fuse for fuzzy search
## Usage
Add a Bookmark: Ctrl+B
Open Extension Tab: Alt+B## Install the dependencies
```bash
yarn
```### Start the app in development mode (hot-code reloading, error reporting, etc.)
```bash
quasar dev
```### Lint the files
```bash
yarn run lint
```### Build the app for production
```bash
quasar build
```### Customize the configuration
See [Configuring quasar.conf.js](https://quasar.dev/quasar-cli/quasar-conf-js).