Domkit

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

Domkitとは何ですか?

Domkitはnickolasburrによって開発されたChromeの拡張機能で、その主な機能は「Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Domkit拡張機能のCRXファイルをダウンロード

Domkit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Domkit Domkit
ID cdeocdbeomkaegbihhleiikgkkmacgek
公式URL https://chromewebstore.google.com/detail/domkit/cdeocdbeomkaegbihhleiikgkkmacgek
説明 Domkit is a Chrome extension for analyzing the CSS box model of individual HTML elements.
ファイルサイズ 121 KB
インストール数 920
現在のバージョン 2.1.6
最終更新日 2017-07-22
公開日 2017-07-22
評価 4.33/5 合計 3 レビュー
開発者 nickolasburr
支払い方法 free
対応言語 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"
    ]
}