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 |
Eメール | [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": [ "*:\/\/*\/*" ] } |