https://github.com/frankdilo/chrome-shortcuts-extension
https://github.com/frankdilo/chrome-shortcuts-extension
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/frankdilo/chrome-shortcuts-extension
- Owner: frankdilo
- Created: 2025-02-08T09:34:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-09T11:17:11.000Z (over 1 year ago)
- Last Synced: 2025-02-09T12:18:30.735Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://frankdilo.github.io/chrome-shortcuts-extension/
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```