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はAlejandro Zepedaによって開発されたChromeの拡張機能で、その主な機能は「Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).」です。

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

screenshot

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

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
Eメール [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"
    ]
}