Local Storage Manager

Manage your local storage variables in one single click. The best extension for devs.

What is Local Storage Manager?

Local Storage Manager is a Chrome extension developed by caraticar21, and its main feature is "Manage your local storage variables in one single click. The best extension for devs.".

Extension Screenshots

screenshot

Download Local Storage Manager Extension CRX File

Download Local Storage Manager 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

                        Copy, paste and edit your local storage variables in one single click                    

Extension Basic Information

Name Local Storage Manager Local Storage Manager
ID gblgaabfeickfogegnkagbehmbbnpbnp
Official URL https://chromewebstore.google.com/detail/local-storage-manager/gblgaabfeickfogegnkagbehmbbnpbnp
Description Manage your local storage variables in one single click. The best extension for devs.
File Size 109 KB
Installation Count 322
Current Version 2.0
Last Updated 2023-11-07
Publish Date 2023-07-31
Rating 5.00/5 Total 3 Ratings
Developer caraticar21
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 Manager",
    "version": "2.0",
    "author": "CCAC and DDTG",
    "description": "Manage your local storage variables in one single click. The best extension for devs.",
    "icons": {
        "16": ".\/media\/favicon-16x16.png",
        "32": ".\/media\/favicon-32x32.png",
        "128": ".\/media\/favicon.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/scripts\/storage.js"
            ],
            "css": [
                ".\/popup\/popup.css"
            ]
        }
    ],
    "action": {
        "default_popup": ".\/popup\/popup.html",
        "default_title": "Local Storage Manager"
    },
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "*:\/\/*\/",
        ""
    ]
}