iSpy - a localStorage Manager
This extension provides users with a simple interface to localStorage
Wat is iSpy - a localStorage Manager?
iSpy - a localStorage Manager is een Chrome-extensie ontwikkeld door https://rossedfort.com, en de belangrijkste functie is "This extension provides users with a simple interface to localStorage".
Extensie Screenshots
Download het CRX-bestand van de extensie iSpy - a localStorage Manager
Download iSpy - a localStorage Manager-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | iSpy - a localStorage Manager |
ID | kaddnceobbflkbpfmnlpoijihclphame |
Officiële URL | https://chromewebstore.google.com/detail/ispy-a-localstorage-manag/kaddnceobbflkbpfmnlpoijihclphame |
Beschrijving | This extension provides users with a simple interface to localStorage |
Bestandsgrootte | 981 KB |
Aantal Installaties | 43 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2019-10-12 |
Publicatiedatum | 2019-10-10 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://rossedfort.com |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |