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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}