A Chrome browser extension that allows you to extract, view, copy, and insert cookies from any website with a clean and modern interface.
- Extract Cookies: View all cookies from the current website domain
- Copy Individual Cookies: Copy any single cookie with one click
- Copy All Cookies: Copy all cookies in
name=value; name=valueformat - Insert Cookies: Paste and insert cookies into the current domain
- Real-time Count: Display the total number of cookies found
- Modern UI: Clean, minimalist interface with smooth animations
- Privacy Focused: All operations are performed locally, no data sent to external servers
- Download or clone this repository
- Open Chrome and navigate to
chrome://extensions/ - Enable Developer mode (toggle in top-right corner)
- Click Load unpacked
- Select the extension folder
- The extension icon will appear in your toolbar
- Navigate to any website
- Click the extension icon in your Chrome toolbar
- All cookies from the current domain will be displayed
- The cookie count is shown in the header
- Copy All: Click the "COPY ALL" button to copy all cookies in semicolon-separated format
- Copy Individual: Click "Copy" next to any cookie to copy just that cookie
- Click the + button in the header to open the insert panel
- Paste your cookies in the format:
name=value; name2=value2 - Click Insert Cookies to add them to the current domain
- The cookie list will refresh automatically
Cookies/
├── manifest.json # Extension configuration
├── popup.html # Popup UI structure
├── popup.css # Styles for popup interface
├── popup.js # Popup logic and cookie operations
├── background.js # Service worker
├── images/
│ ├── icon-16.png # Icon (16x16)
│ ├── icon-48.png # Icon (48x48)
│ └── icon-128.png # Icon (128x128)
├── LICENSE # MIT License
└── README.md # This file
cookies- To read and set cookies on websitesactiveTab- To access the current active tabscripting- For content scripts (future use)<all_urls>- To work on any website
- Manifest Version: 3 (Latest Chrome extension standard)
- Language: JavaScript (Vanilla, no dependencies)
- Compatibility: Chrome 88+, Edge, and Chromium-based browsers
Cookies are copied in the following format:
session_id=abc123; user_token=xyz789; preferences=dark_mode
This format is compatible with:
- HTTP headers (Cookie)
- JavaScript (document.cookie)
- API requests
- Browser console testing
- Session tokens
- Authentication credentials
- Personal user data
Be careful where you paste your cookies! Only use them in trusted applications or testing environments.
To modify this extension:
- Edit the files in the extension directory
- Refresh the extension in
chrome://extensions/ - Test on any website
The extension uses no external dependencies and runs entirely locally.
MIT License - Copyright (c) 2025 Avdesh Jadon
See LICENSE file for details.
Avdesh Jadon
If you encounter issues:
- Check the Chrome DevTools console for errors
- Ensure all files are in the correct directory
- Try refreshing the extension in Chrome
- Reload the webpage you're trying to extract cookies from
Made with ❤️ for cookie management