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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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
URL หน้านโยบายความเป็นส่วนตัว 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"
            ]
        }
    ]
}