Storage Manager
An extension that manages the contents of LocalStorage and SessionStorage
Storage Managerとは何ですか?
Storage Managerはmugiによって開発されたChromeの拡張機能で、その主な機能は「An extension that manages the contents of LocalStorage and SessionStorage」です。
拡張機能のスクリーンショット
Storage Manager拡張機能のCRXファイルをダウンロード
Storage Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
- Web Storageの内容を保存
- 観覧中のページに保存済みの内容を適用
- csv形式のダウンロード
- csv形式のインポート 拡張機能の基本情報
| 名前 | |
| ID | aopjkjhphacmpcecfdhcbjfcjhbnhaln |
| 公式URL | https://chromewebstore.google.com/detail/storage-manager/aopjkjhphacmpcecfdhcbjfcjhbnhaln |
| 説明 | An extension that manages the contents of LocalStorage and SessionStorage |
| ファイルサイズ | 440 KB |
| インストール数 | 89 |
| 現在のバージョン | 0.1.0 |
| 最終更新日 | 2021-06-16 |
| 公開日 | 2021-06-16 |
| 開発者 | mugi |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://mugi111.github.io/storage-manager/ |
| 対応言語 | 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'"
} | |