LocalStorage Manager
Add, edit, remove, export and import local storage and session storage data
什么是LocalStorage Manager?
LocalStorage Manager是由michailchaban198812开发的Chrome扩展程序,该扩展的主要功能是“Add, edit, remove, export and import local storage and session storage data”。
扩展截图
下载LocalStorage Manager扩展crx文件
下载LocalStorage Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | fkhoimdhngkiicbjobkinobjkoefhkap |
官方URL | https://chrome.google.com/webstore/detail/fkhoimdhngkiicbjobkinobjkoefhkap |
简介 | Add, edit, remove, export and import local storage and session storage data |
文件大小 | 44.12 KB |
安装次数 | 27,093 |
当前版本 | 2.6 |
更新时间 | 2023-01-02 |
上架时间 | 2018-04-06 |
评分 | 3.95/5 共38次评分 |
开发者 | michailchaban198812 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/gabrielbarros/localstorage-manager |
支持的语言 | 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" ] } |