An open API service indexing awesome lists of open source software.

https://github.com/frankdilo/chrome-shortcuts-extension


https://github.com/frankdilo/chrome-shortcuts-extension

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

# PowerKeys

A Chrome extension for managing keyboard shortcuts.

## Links

- Figma file with icon [here]()

## Development

1. Clone the repository
2. Install dependencies with `npm install`
3. Load the extension in Chrome:
- Open Chrome and navigate to `chrome://extensions/`
- Enable "Developer mode"
- Click "Load unpacked" and select the extension directory

## Project Structure

```
powerkeys/
├── src/
│ ├── background/
│ │ └── background.js
│ ├── popup/
│ │ ├── popup.html
│ │ ├── popup.css
│ │ └── popup.js
│ └── utils/
│ └── shortcuts.js
├── public/
│ ├── icons/
│ │ ├── icon16.png
│ │ ├── icon48.png
│ │ └── icon128.png
│ └── manifest.json
├── package.json
└── README.md
```