Storage Manager

Allows users to quickly and easily clear the storage of a web page with a single click!

Was ist Storage Manager?

Storage Manager ist eine Chrome-Erweiterung, die von ricky.products1 entwickelt wurde, und ihr Hauptmerkmal ist "Allows users to quickly and easily clear the storage of a web page with a single click!".

Erweiterungsscreenshots

screenshot

Storage Manager-Erweiterungs-CRX-Datei herunterladen

Laden Sie Storage Manager-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Storage Manager Storage Manager
ID mdinknncjoknjjcdkflmdceopmkllgll
Offizielle URL https://chrome.google.com/webstore/detail/storage-manager/mdinknncjoknjjcdkflmdceopmkllgll
Beschreibung Allows users to quickly and easily clear the storage of a web page with a single click!
Dateigröße 14.42 KB
Installationsanzahl 1,244
Aktuelle Version 1
Letztes Update 2022-12-27
Veröffentlichungsdatum 2022-12-27
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler ricky.products1
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://home.ottuleringvoic.com/
Hilfeseite URL https://home.ottuleringvoic.com/contact.html
Unterstützte Sprachen 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": [
        "*:\/\/*\/*"
    ]
}