Storage Manager
Allows users to quickly and easily clear the storage of a web page with a single click!
Vad är Storage Manager?
Storage Manager är en Chrome-tillägg utvecklad av ricky.products1, och dess huvudfunktion är "Allows users to quickly and easily clear the storage of a web page with a single click!".
Tilläggsskärmbilder
Ladda ner Storage Manager-förlängningens CRX-fil
Ladda ner Storage Manager-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | mdinknncjoknjjcdkflmdceopmkllgll |
Officiell webbadress | https://chrome.google.com/webstore/detail/storage-manager/mdinknncjoknjjcdkflmdceopmkllgll |
Beskrivning | Allows users to quickly and easily clear the storage of a web page with a single click! |
Filstorlek | 14.42 KB |
Antal Installationer | 1,244 |
Aktuell Version | 1 |
Senast Uppdaterad | 2022-12-27 |
Publiceringsdatum | 2022-12-27 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | ricky.products1 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://home.ottuleringvoic.com/ |
Hjälpsida URL | https://home.ottuleringvoic.com/contact.html |
Stödda Språk | 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": [ "*:\/\/*\/*" ] } |