Domkit

Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.

Domkit là gì?

Domkit là một tiện ích mở rộng Chrome được phát triển bởi nickolasburr, và tính năng chính của nó là "Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Domkit 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

                        Domkit is a Chrome extension for analyzing the CSS box model of HTML elements. If you need to know the computed width or height of an element, toggle on Domkit and it will provide a large box shadow around the element, essentially raising it above the other elements and giving you the dimensions. Additionally, Domkit also provides information on what type of element you're viewing so that you can easily know whether you're viewing the element you want or not. Enjoy Domkit and please submit any feedback!                    

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

Tên Domkit Domkit
ID cdeocdbeomkaegbihhleiikgkkmacgek
URL Chính Thức https://chromewebstore.google.com/detail/domkit/cdeocdbeomkaegbihhleiikgkkmacgek
Mô tả Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.
Kích Thước Tệp 121 KB
Số Lần Cài Đặt 920
Phiên Bản Hiện Tại 2.1.6
Cập Nhật Lần Cuối 2017-07-22
Ngày Phát Hành 2017-07-22
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển nickolasburr
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Domkit",
    "short_name": "DMKT",
    "version": "2.1.6",
    "description": "Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/orange-box-48x48.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "icons\/orange-box-16x16.png",
        "48": "icons\/orange-box-48x48.png",
        "128": "icons\/orange-box-128x128.png"
    },
    "permissions": [
        "storage"
    ]
}