Storage Manager
An extension that manages the contents of LocalStorage and SessionStorage
What is Storage Manager?
Storage Manager is a Chrome extension developed by mugi, and its main feature is "An extension that manages the contents of LocalStorage and SessionStorage".
Extension Screenshots
Download Storage Manager Extension CRX File
Download Storage Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
- Web Storageの内容を保存 - 観覧中のページに保存済みの内容を適用 - csv形式のダウンロード - csv形式のインポート
Extension Basic Information
Name | Storage Manager |
ID | aopjkjhphacmpcecfdhcbjfcjhbnhaln |
Official URL | https://chromewebstore.google.com/detail/storage-manager/aopjkjhphacmpcecfdhcbjfcjhbnhaln |
Description | An extension that manages the contents of LocalStorage and SessionStorage |
File Size | 440 KB |
Installation Count | 89 |
Current Version | 0.1.0 |
Last Updated | 2021-06-16 |
Publish Date | 2021-06-16 |
Developer | mugi |
[email protected] | |
Payment Type | free |
Extension Website | https://mugi111.github.io/storage-manager/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Storage Manager", "version": "0.1.0", "homepage_url": "https:\/\/mugi111.github.io\/storage-manager\/", "description": "An extension that manages the contents of LocalStorage and SessionStorage", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "activeTab", "storage", "downloads" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_title": "storage manager" }, "content_security_policy": "script-src 'self' ; object-src 'self'" } |