Storage Manager
Allows users to quickly and easily clear the storage of a web page with a single click!
Co to jest Storage Manager?
Storage Manager to rozszerzenie Chrome opracowane przez ricky.products1, a jego główną funkcją jest „Allows users to quickly and easily clear the storage of a web page with a single click!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Storage Manager
Pobierz pliki rozszerzeń Storage Manager w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | mdinknncjoknjjcdkflmdceopmkllgll |
Oficjalny URL | https://chrome.google.com/webstore/detail/storage-manager/mdinknncjoknjjcdkflmdceopmkllgll |
Opis | Allows users to quickly and easily clear the storage of a web page with a single click! |
Rozmiar pliku | 14.42 KB |
Liczba instalacji | 1,244 |
Aktualna Wersja | 1 |
Ostatnia Aktualizacja | 2022-12-27 |
Data Publikacji | 2022-12-27 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | ricky.products1 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://home.ottuleringvoic.com/ |
Adres URL Strony Pomocy | https://home.ottuleringvoic.com/contact.html |
Obsługiwane Języki | 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": [ "*:\/\/*\/*" ] } |