Design Column Overlay

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

Co to jest Design Column Overlay?

Design Column Overlay to rozszerzenie Chrome opracowane przez pnarielwala, a jego główną funkcją jest „This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Design Column Overlay

Pobierz pliki rozszerzeń Design Column Overlay w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Design Column Overlay Design Column Overlay
ID ljefcffcapmdjpfkdbdaflllfjognlnh
Oficjalny URL https://chromewebstore.google.com/detail/design-column-overlay/ljefcffcapmdjpfkdbdaflllfjognlnh
Opis This chrome extension places a dynamic overlay over the current tab so that web engineers can follow configured visual design…
Rozmiar pliku 392 KB
Liczba instalacji 503
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2022-09-27
Data Publikacji 2020-04-22
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper pnarielwala
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/pnarielwala/design-column-overlay
Adres URL Strony Pomocy https://github.com/pnarielwala/design-column-overlay
Obsługiwane Języki 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"
            ]
        }
    ]
}