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 |
官方網址 | 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" ] } |