LocalStorage Manager
Add, edit, remove, export and import local storage and session storage data
Was ist LocalStorage Manager?
LocalStorage Manager ist eine Chrome-Erweiterung, die von michailchaban198812 entwickelt wurde, und ihr Hauptmerkmal ist "Add, edit, remove, export and import local storage and session storage data".
Erweiterungsscreenshots
LocalStorage Manager-Erweiterungs-CRX-Datei herunterladen
Laden Sie LocalStorage Manager-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | fkhoimdhngkiicbjobkinobjkoefhkap |
Offizielle URL | https://chrome.google.com/webstore/detail/fkhoimdhngkiicbjobkinobjkoefhkap |
Beschreibung | Add, edit, remove, export and import local storage and session storage data |
Dateigröße | 44.12 KB |
Installationsanzahl | 27,093 |
Aktuelle Version | 2.6 |
Letztes Update | 2023-01-02 |
Veröffentlichungsdatum | 2018-04-06 |
Bewertung | 3.95/5 Insgesamt 38 Bewertungen |
Entwickler | michailchaban198812 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/gabrielbarros/localstorage-manager |
Unterstützte Sprachen | 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" ] } |