LocalStorage Manager

Add, edit, remove, export and import local storage and session storage data

Qu'est-ce que LocalStorage Manager ?

LocalStorage Manager est une extension Chrome développée par michailchaban198812, et sa fonction principale est "Add, edit, remove, export and import local storage and session storage data".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension LocalStorage Manager

Téléchargez les fichiers d'extension LocalStorage Manager au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Source code and bug tracker are available at https://github.com/gabrielbarros/localstorage-manager
———————————————————

Add, edit, remove, export and import local storage and session storage data.

----------------------------------------

According to Wikipedia, web storage offers two different storage areas — local storage and session storage — which differ in scope and lifetime. Data placed in local storage is per origin (the combination of protocol, hostname, and port number as defined in the same-origin policy) (the data is available to all scripts loaded from pages from the same origin that previously stored the data) and persists after the browser is closed. Session storage is per-origin-per-window-or-tab and is limited to the lifetime of the window. Session storage is intended to allow separate instances of the same web application to run in different windows without interfering with each other, a use case that's not well supported by cookies.                    

Informations de Base sur l'Extension

Nom LocalStorage Manager LocalStorage Manager
ID fkhoimdhngkiicbjobkinobjkoefhkap
URL Officiel https://chrome.google.com/webstore/detail/fkhoimdhngkiicbjobkinobjkoefhkap
Description Add, edit, remove, export and import local storage and session storage data
Taille du Fichier 44.12 KB
Nombre d'Installations 27,093
Version Actuelle 2.6
Dernière Mise à Jour 2023-01-02
Date de Publication 2018-04-06
Évaluation 3.95/5 Total 38 Évaluations
Développeur michailchaban198812
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/gabrielbarros/localstorage-manager
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LocalStorage Manager",
    "version": "2.6",
    "description": "Add, edit, remove, export and import local storage and session storage data",
    "icons": {
        "16": "img\/16x16.png",
        "48": "img\/48x48.png",
        "128": "img\/128x128.png"
    },
    "offline_enabled": true,
    "action": {
        "default_icon": "img\/128x128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ]
}