https://github.com/joelseq/linkstowr-extension
https://github.com/joelseq/linkstowr-extension
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/joelseq/linkstowr-extension
- Owner: joelseq
- Created: 2023-07-15T06:26:18.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-06-24T02:31:25.000Z (about 1 year ago)
- Last Synced: 2025-10-09T21:59:36.640Z (9 months ago)
- Language: Svelte
- Size: 273 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LinkStowr Extension
This is the repo for the Chrome Extension for [Obsidian LinkStowr](https://github.com/joelseq/obsidian-linkstowr).
## Development
Install dependencies:
```
npm install
```
OR
```
pnpm install
```
### Start the local development server for the extension
```
npm run dev
```
OR
```
pnpm dev
```
This will create a `dist/` folder with the contents of the extension which you can load unpacked into a Chromium based browser.
### To run the test suite
To run it once:
```
pnpm test
```
To run it in watch mode:
```
pnpm test:watch
```
### Production build
To get a production bundled version of the extension:
```
pnpm build
```
If you would like a zipped version of the extension, you can run:
```
pnpm pre:publish
```
This will create a zip of the extension and place it in the `out/` directory.