Design Column Overlay

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

What is Design Column Overlay?

Design Column Overlay is a Chrome extension developed by pnarielwala, and its main feature is "This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…".

Extension Screenshots

screenshot
screenshot
screenshot

Download Design Column Overlay Extension CRX File

Download Design Column Overlay extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Design Column Overlay Design Column Overlay
ID ljefcffcapmdjpfkdbdaflllfjognlnh
Official URL https://chromewebstore.google.com/detail/design-column-overlay/ljefcffcapmdjpfkdbdaflllfjognlnh
Description This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…
File Size 392 KB
Installation Count 503
Current Version 0.2
Last Updated 2022-09-27
Publish Date 2020-04-22
Rating 5.00/5 Total 2 Ratings
Developer pnarielwala
Email [email protected]
Payment Type free
Extension Website https://github.com/pnarielwala/design-column-overlay
Help Page URL https://github.com/pnarielwala/design-column-overlay
Supported Languages 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"
            ]
        }
    ]
}