A professional clipboard history manager Chrome extension that captures and manages your clipboard snippets efficiently.
Ctrl+Shift+V (or Cmd+Shift+V on Mac)clipboard_manager/
├── src/
│ ├── scripts/ # Core extension scripts
│ │ ├── background.js # Service worker - handles history management
│ │ └── content.js # Content script - listens for copy events
│ └── popup/ # Popup UI
│ ├── popup.html # UI structure
│ ├── popup.css # Styling
│ └── popup.js # Popup logic
├── public/ # Static assets (if needed)
├── docs/ # Documentation
├── tests/ # Test files
├── manifest.json # Extension configuration
├── package.json # Project metadata and dependencies
├── .gitignore # Git ignore rules
└── README.md # This file
npm install
chrome://extensions/clipboard_manager folderCtrl+Shift+V to open the clipboard history popupstorage - for clipboard historyclipboardWrite - to write to clipboardclipboardRead - to read copied itemsMIT
For issues or feature requests, please create an issue in the repository.