Local Storage

A browser extension for managing local storage.

Cos'è Local Storage?

Local Storage è un'estensione di Chrome sviluppata da Shashika Virajh, e la sua funzione principale è "A browser extension for managing local storage.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Local Storage

Scarica i file di estensione Local Storage in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Local Storage Local Storage
ID nnlekldijoehomfgfciodmolohhfkfpm
URL Ufficiale https://chromewebstore.google.com/detail/local-storage/nnlekldijoehomfgfciodmolohhfkfpm
Descrizione A browser extension for managing local storage.
Dimensione del File 143 KB
Conteggio Installazioni 631
Versione Corrente 1.0
Ultimo Aggiornamento 2023-09-30
Data di Pubblicazione 2023-09-30
Valutazione 5.00/5 Totale 10 Valutazioni
Sviluppatore Shashika Virajh
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}