Design Column Overlay

This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…

Design Column Overlayとは何ですか?

Design Column Overlayはpnarielwalaによって開発されたChromeの拡張機能で、その主な機能は「This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…」です。

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

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design guidelines at various window dimensions                    

拡張機能の基本情報

名前 Design Column Overlay Design Column Overlay
ID ljefcffcapmdjpfkdbdaflllfjognlnh
公式URL https://chromewebstore.google.com/detail/design-column-overlay/ljefcffcapmdjpfkdbdaflllfjognlnh
説明 This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…
ファイルサイズ 392 KB
インストール数 503
現在のバージョン 0.2
最終更新日 2022-09-27
公開日 2020-04-22
評価 5.00/5 合計 2 レビュー
開発者 pnarielwala
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/pnarielwala/design-column-overlay
ヘルプページのURL https://github.com/pnarielwala/design-column-overlay
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Design Column Overlay",
    "version": "0.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "column16.png",
        "48": "column48.png",
        "128": "column128.png"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}