Outline Chrome Extension

Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).

Outline Chrome Extensionคืออะไร?

Outline Chrome Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alejandro Zepeda และคุณลักษณะหลักของมันคือ "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning)."

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

screenshot

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

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

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

                        This extension will help you to add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning), it's great for web design, or just to verify that your HTML + CSS code is working as expected.                    

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

ชื่อ Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
คำอธิบาย Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
ขนาดไฟล์ 12.84 KB
จำนวนการติดตั้ง 3,151
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2022-06-16
วันที่เผยแพร่ 2019-04-26
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Alejandro Zepeda
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/alejandrozepeda/outline-chrome-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outline Chrome Extension",
    "version": "0.1.0",
    "author": "Alejandro Zepeda",
    "description": "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/alejandrozepeda\/outline-chrome-extension",
    "icons": {
        "128": "icons\/outline.png"
    },
    "browser_action": {
        "default_icon": "icons\/outline-black.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "storage",
        "activeTab"
    ]
}