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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}