Local Storage

A browser extension for managing local storage.

What is Local Storage?

Local Storage is a Chrome extension developed by Shashika Virajh, and its main feature is "A browser extension for managing local storage.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Local Storage Extension CRX File

Download Local Storage extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Local Storage is a handy Chrome extension that offers a user-friendly interface to view, manage, and manipulate the items in your browser's local storage. Forget about delving into the Console tab every time you need to check on your local storage. This extension provides all the tools you need at your fingertips.                    

Extension Basic Information

Name Local Storage Local Storage
ID nnlekldijoehomfgfciodmolohhfkfpm
Official URL https://chromewebstore.google.com/detail/local-storage/nnlekldijoehomfgfciodmolohhfkfpm
Description A browser extension for managing local storage.
File Size 143 KB
Installation Count 631
Current Version 1.0
Last Updated 2023-09-30
Publish Date 2023-09-30
Rating 5.00/5 Total 10 Ratings
Developer Shashika Virajh
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Local Storage",
    "version": "1.0",
    "description": "A browser extension for managing local storage.",
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_popup": "extension\/popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "extension\/content.js"
            ]
        }
    ]
}