Chrome Storage Editor

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

Chrome Storage Editorคืออะไร?

Chrome Storage Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mansour และคุณลักษณะหลักของมันคือ "This extension is a starting point to create a real Chrome extension"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome Storage Editor

ดาวน์โหลดไฟล์ส่วนขยาย Chrome Storage Editor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}