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形式のインポート
扩展基本信息
名称 | Storage Manager |
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 |
电子邮箱 | [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'" } |