LocalStorage Manager
Add, edit, remove, export and import local storage and session storage data
LocalStorage Manager là gì?
LocalStorage Manager là một tiện ích mở rộng Chrome được phát triển bởi michailchaban198812, và tính năng chính của nó là "Add, edit, remove, export and import local storage and session storage data".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng LocalStorage Manager
Tải xuống các tệp mở rộng LocalStorage Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | fkhoimdhngkiicbjobkinobjkoefhkap |
URL Chính Thức | https://chrome.google.com/webstore/detail/fkhoimdhngkiicbjobkinobjkoefhkap |
Mô tả | Add, edit, remove, export and import local storage and session storage data |
Kích Thước Tệp | 44.12 KB |
Số Lần Cài Đặt | 27,093 |
Phiên Bản Hiện Tại | 2.6 |
Cập Nhật Lần Cuối | 2023-01-02 |
Ngày Phát Hành | 2018-04-06 |
Đánh Giá | 3.95/5 Tổng số 38 Đánh Giá |
Nhà Phát Triển | michailchaban198812 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/gabrielbarros/localstorage-manager |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |