Design Column Overlay

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

Wat is Design Column Overlay?

Design Column Overlay is een Chrome-extensie ontwikkeld door pnarielwala, en de belangrijkste functie is "This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Design Column Overlay

Download Design Column Overlay-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Design Column Overlay Design Column Overlay
ID ljefcffcapmdjpfkdbdaflllfjognlnh
Officiële URL https://chromewebstore.google.com/detail/design-column-overlay/ljefcffcapmdjpfkdbdaflllfjognlnh
Beschrijving This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…
Bestandsgrootte 392 KB
Aantal Installaties 503
Huidige Versie 0.2
Laatst Bijgewerkt 2022-09-27
Publicatiedatum 2020-04-22
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar pnarielwala
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/pnarielwala/design-column-overlay
Help Pagina-URL https://github.com/pnarielwala/design-column-overlay
Ondersteunde Talen 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"
            ]
        }
    ]
}