LocalStorage Viewer is a Chrome extension that allows users to easily view and copy the localStorage content of the current web page.
- View all key-value pairs stored in localStorage of the active tab
 - Copy individual key-value pairs to clipboard with a single click
 - User-friendly interface with hover effects for better readability of long values
 
- Clone this repository or download the source code.
 - Open Google Chrome and navigate to 
chrome://extensions/. - Enable "Developer mode" in the top right corner.
 - Click "Load unpacked" and select the directory containing the extension files.
 
- Click on the LocalStorage Viewer icon in your Chrome toolbar when on a webpage.
 - The popup will display all localStorage items for the current page.
 - Hover over keys or values to see their full content if they're too long.
 - Click the "Copy" button next to any item to copy its key-value pair to your clipboard.
 
manifest.json: Contains metadata about the extension and its capabilities.popup.html: Defines the structure and style of the extension's popup window.popup.js: Implements the functionality for retrieving and displaying localStorage data.
This extension requires the following permissions:
activeTab: To access the current tab's information.scripting: To execute scripts in the context of web pages.
Contributions are welcome! Please feel free to submit a Pull Request.
If you encounter any issues or have questions, please file an issue on the GitHub repository.