Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/weilueluo/local-storage-explorer
Easily view, copy or search local storage content from any webpage by clicking on the extension icon. It also supports automatically deserialize json string.
https://github.com/weilueluo/local-storage-explorer
chrome-extension copy-to-clipboard explorer localstorage
Last synced: 21 days ago
JSON representation
Easily view, copy or search local storage content from any webpage by clicking on the extension icon. It also supports automatically deserialize json string.
- Host: GitHub
- URL: https://github.com/weilueluo/local-storage-explorer
- Owner: weilueluo
- License: gpl-3.0
- Created: 2023-11-19T18:33:03.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-25T10:54:50.000Z (about 1 year ago)
- Last Synced: 2023-12-25T11:48:06.992Z (about 1 year ago)
- Topics: chrome-extension, copy-to-clipboard, explorer, localstorage
- Language: JavaScript
- Homepage: https://github.com/weilueluo/local-storage-explorer
- Size: 926 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Local Storage Explorer
Easily view, copy or search local storage content from any webpage by clicking on the extension icon. It also supports automatically deserialize json string.
## Install
### Chrome
https://chromewebstore.google.com/detail/local-storage-explorer/ihbcgmgbibicnkinndgpnmphahijahio
### Firefox
https://addons.mozilla.org/firefox/addon/localstorage-explorer/## Usage
Local storage maintains a separate storage area for each given origin, data persists even when the browser is closed and reopened. It gets cleared only through JavaScript, or clearing the Browser cache / Locally Stored Data. It is a JSON object. For more information about local storage, see https://developer.mozilla.org/docs/Web/API/Window/localStorageThis extension allow you to visualize, copy or search the content of the local storage easily. After clicking on the extension icon, you will see a popup, the extension will fetch the local storage content live which will be loaded into the popup shortly, it is a tree structure displaying the content of the current active tab's local storage.
The tree-like structure contains:
- metadata about the value associated with this key (type, number of items, etc...).
- copy icon which when clicked, copy the value associated with this key to your clipboard.
- eye icon which when clicked, display the full content of the key and value (this is because the key/value can be very large and not easy to work with when expanded).## Options
- You can edit the `max depth` value at the top to a right level for your needs, it can also be set to a lower value to improve performance.## Screenshots
### Main### Search