iSpy - a localStorage Manager

This extension provides users with a simple interface to localStorage

Was ist iSpy - a localStorage Manager?

iSpy - a localStorage Manager ist eine Chrome-Erweiterung, die von https://rossedfort.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension provides users with a simple interface to localStorage".

Erweiterungsscreenshots

screenshot
screenshot

iSpy - a localStorage Manager-Erweiterungs-CRX-Datei herunterladen

Laden Sie iSpy - a localStorage 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

                        iSpy provides full access and management of your browser's localStorage. Simply open the extension to add, edit, or remove localStorage entries. iSpy is build using ReactJS and uses icons from fontawesome. It offers several different color themes, each with a light and dark mode.                    

Grundlegende Informationen zur Erweiterung

Name iSpy - a localStorage Manager iSpy - a localStorage Manager
ID kaddnceobbflkbpfmnlpoijihclphame
Offizielle URL https://chromewebstore.google.com/detail/ispy-a-localstorage-manag/kaddnceobbflkbpfmnlpoijihclphame
Beschreibung This extension provides users with a simple interface to localStorage
Dateigröße 981 KB
Installationsanzahl 43
Aktuelle Version 0.0.1
Letztes Update 2019-10-12
Veröffentlichungsdatum 2019-10-10
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://rossedfort.com
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "iSpy - a localStorage Manager",
    "short_name": "iSpy",
    "description": "This extension provides users with a simple interface to localStorage",
    "version": "0.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ]
}