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 là gì?

Outline Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi Alejandro Zepeda, và tính năng chính của nó là "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Outline Chrome Extension

Tải xuống các tệp mở rộng Outline Chrome Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
URL Chính Thức https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
Mô tả Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
Kích Thước Tệp 12.84 KB
Số Lần Cài Đặt 3,151
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2022-06-16
Ngày Phát Hành 2019-04-26
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Alejandro Zepeda
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alejandrozepeda/outline-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}