iSpy - a localStorage Manager
This extension provides users with a simple interface to localStorage
What is iSpy - a localStorage Manager?
iSpy - a localStorage Manager is a Chrome extension developed by https://rossedfort.com, and its main feature is "This extension provides users with a simple interface to localStorage".
Extension Screenshots
Download iSpy - a localStorage Manager Extension CRX File
Download iSpy - a localStorage Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | iSpy - a localStorage Manager |
ID | kaddnceobbflkbpfmnlpoijihclphame |
Official URL | https://chromewebstore.google.com/detail/ispy-a-localstorage-manag/kaddnceobbflkbpfmnlpoijihclphame |
Description | This extension provides users with a simple interface to localStorage |
File Size | 981 KB |
Installation Count | 43 |
Current Version | 0.0.1 |
Last Updated | 2019-10-12 |
Publish Date | 2019-10-10 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://rossedfort.com |
Payment Type | free |
Supported Languages | 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" ] } |