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
电子邮箱 [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"
            ]
        }
    ]
}