Local Storage

A browser extension for managing local storage.

Co to jest Local Storage?

Local Storage to rozszerzenie Chrome opracowane przez Shashika Virajh, a jego główną funkcją jest „A browser extension for managing local storage.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Local Storage

Pobierz pliki rozszerzeń Local Storage w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Local Storage Local Storage
ID nnlekldijoehomfgfciodmolohhfkfpm
Oficjalny URL https://chromewebstore.google.com/detail/local-storage/nnlekldijoehomfgfciodmolohhfkfpm
Opis A browser extension for managing local storage.
Rozmiar pliku 143 KB
Liczba instalacji 631
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-09-30
Data Publikacji 2023-09-30
Ocena 5.00/5 Łącznie 10 Oceny
Deweloper Shashika Virajh
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}