Design Column Overlay

This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…

Design Column Overlayคืออะไร?

Design Column Overlay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pnarielwala และคุณลักษณะหลักของมันคือ "This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Design Column Overlay

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

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

                        This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design guidelines at various window dimensions                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Design Column Overlay Design Column Overlay
ID ljefcffcapmdjpfkdbdaflllfjognlnh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/design-column-overlay/ljefcffcapmdjpfkdbdaflllfjognlnh
คำอธิบาย This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…
ขนาดไฟล์ 392 KB
จำนวนการติดตั้ง 503
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2022-09-27
วันที่เผยแพร่ 2020-04-22
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา pnarielwala
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/pnarielwala/design-column-overlay
URL หน้าช่วยเหลือ https://github.com/pnarielwala/design-column-overlay
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Design Column Overlay",
    "version": "0.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "column16.png",
        "48": "column48.png",
        "128": "column128.png"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}