Chrome Storage Editor

This extension is a starting point to create a real Chrome extension

Chrome Storage Editor란 무엇입니까?

Chrome Storage Editor은(는) Mansour에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is a starting point to create a real Chrome extension"입니다.

확장 프로그램 스크린샷

screenshot

Chrome Storage Editor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An easy to use chrome storage editor with JSON validator.                    

확장 프로그램 기본 정보

이름 Chrome Storage Editor Chrome Storage Editor
ID onedaldmofocpkohhciabddanpcjgglk
공식 URL https://chromewebstore.google.com/detail/chrome-storage-editor/onedaldmofocpkohhciabddanpcjgglk
설명 This extension is a starting point to create a real Chrome extension
파일 크기 1.5 MB
설치 횟수 36
현재 버전 0.0.1
최근 업데이트 2019-02-09
출시 날짜 2019-02-05
개발자 Mansour
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://mansour.co.nz/chrome-extensions
도움말 페이지 URL http://mansour.co.nz/
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Storage Editor",
    "description": "This extension is a starting point to create a real Chrome extension",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "logo-small.png",
        "48": "logo-small.png",
        "128": "logo-small.png"
    },
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "permissions": [
        "storage",
        "activeTab",
        "background",
        "unlimitedStorage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ]
}