Storage Manager
Allows users to quickly and easily clear the storage of a web page with a single click!
什么是Storage Manager?
Storage Manager是由ricky.products1开发的Chrome扩展程序,该扩展的主要功能是“Allows users to quickly and easily clear the storage of a web page with a single click!”。
扩展截图
下载Storage Manager扩展crx文件
下载Storage Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Storage Manager is a browser extension that allows users to easily manage and clean their browser storage. With this extension, users can view the amount of storage being used by different websites and delete any unwanted data to free up space. Whether you want to declutter your browser or improve its performance, Storage Manager is a useful tool for keeping your browser storage in check.
扩展基本信息
名称 | |
ID | mdinknncjoknjjcdkflmdceopmkllgll |
官方URL | https://chrome.google.com/webstore/detail/storage-manager/mdinknncjoknjjcdkflmdceopmkllgll |
简介 | Allows users to quickly and easily clear the storage of a web page with a single click! |
文件大小 | 14.42 KB |
安装次数 | 1,244 |
当前版本 | 1 |
更新时间 | 2022-12-27 |
上架时间 | 2022-12-27 |
评分 | 5.00/5 共1次评分 |
开发者 | ricky.products1 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://home.ottuleringvoic.com/ |
帮助页面URL | https://home.ottuleringvoic.com/contact.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "logo.png", "default_title": "Storage Manager", "default_popup": "popup.html" }, "description": "Allows users to quickly and easily clear the storage of a web page with a single click!", "icons": { "128": "logo.png" }, "manifest_version": 3, "name": "Storage Manager", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "icons\/*.svg" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "host_permissions": [ "*:\/\/*\/*" ] } |