LocalStorage Manager
Add, edit, remove, export and import local storage and session storage data
O que é LocalStorage Manager?
LocalStorage Manager é uma extensão do Chrome desenvolvida por michailchaban198812, e sua principal característica é "Add, edit, remove, export and import local storage and session storage data".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão LocalStorage Manager
Baixe arquivos de extensão LocalStorage Manager no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | fkhoimdhngkiicbjobkinobjkoefhkap |
URL Oficial | https://chrome.google.com/webstore/detail/fkhoimdhngkiicbjobkinobjkoefhkap |
Descrição | Add, edit, remove, export and import local storage and session storage data |
Tamanho do Arquivo | 44.12 KB |
Contagem de Instalações | 27,093 |
Versão Atual | 2.6 |
Última Atualização | 2023-01-02 |
Data de Publicação | 2018-04-06 |
Classificação | 3.95/5 Total de 38 Avaliações |
Desenvolvedor | michailchaban198812 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/gabrielbarros/localstorage-manager |
Idiomas Suportados | 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" ] } |