iSpy - a localStorage Manager

This extension provides users with a simple interface to localStorage

iSpy - a localStorage Manager란 무엇입니까?

iSpy - a localStorage Manager은(는) https://rossedfort.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides users with a simple interface to localStorage"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

iSpy - a localStorage Manager 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 iSpy - a localStorage Manager iSpy - a localStorage Manager
ID kaddnceobbflkbpfmnlpoijihclphame
공식 URL https://chromewebstore.google.com/detail/ispy-a-localstorage-manag/kaddnceobbflkbpfmnlpoijihclphame
설명 This extension provides users with a simple interface to localStorage
파일 크기 981 KB
설치 횟수 43
현재 버전 0.0.1
최근 업데이트 2019-10-12
출시 날짜 2019-10-10
평점 5.00/5 총 1 개의 평점
개발자 https://rossedfort.com
결제 유형 free
지원되는 언어 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"
    ]
}