Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 581 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 581 Bytes

bookmarklets

An open source collection of bookmarklets. Feel welcome to discover and contribute your own browser helpers.

Contributing

This project uses pNpm package manager and ES modules.

How do I start the project?

Run the following commands:

pnpm install
pnpm dev

How to add a bookmarklet?

  1. Add a new JavaScript file /src folder
  2. Create and export an instance of Bookmarklet class
  3. Re-export the instance in /src/index.js

Please reference /src/hello-world.js for a basic implementation.