Zeplin Popout Tool

Zeplin Popout Tool in Chrome

ما هو Zeplin Popout Tool؟

Zeplin Popout Tool هو إضافة Chrome تم تطويرها بواسطة Zeplin، والميزة الرئيسية لها هي "Zeplin Popout Tool in Chrome".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Zeplin Popout Tool

قم بتنزيل ملفات الامتداد Zeplin Popout Tool بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Zeplin Popout tool allows you to compare your code output with Zeplin screens for better design-development workflow.                    

معلومات أساسية عن التمديد

الاسم Zeplin Popout Tool Zeplin Popout Tool
ID oinclimgcibkeglgekdbolhdbppmphhe
عنوان URL الرسمي https://chromewebstore.google.com/detail/zeplin-popout-tool/oinclimgcibkeglgekdbolhdbppmphhe
الوصف Zeplin Popout Tool in Chrome
حجم الملف 24.43 KB
عدد التثبيتات 497
النسخة الحالية 1.1.0
آخر تحديث 2023-02-07
تاريخ النشر 2023-01-19
تقييم 5.00/5 مجموع تقييمات 16
المطور Zeplin
نوع الدفع free
موقع الإضافة https://github.com/mertkahyaoglu/zeplin-popout-extension
عنوان صفحة سياسة الخصوصية https://zeplin.io/privacy
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zeplin Popout Tool",
    "version": "1.1.0",
    "manifest_version": 3,
    "description": "Zeplin Popout Tool in Chrome",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "img\/icSolid.png",
                "img\/icTransparent.png"
            ]
        }
    ]
}