Outline Chrome Extension

Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).

Co to jest Outline Chrome Extension?

Outline Chrome Extension to rozszerzenie Chrome opracowane przez Alejandro Zepeda, a jego główną funkcją jest „Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Outline Chrome Extension

Pobierz pliki rozszerzeń Outline Chrome Extension 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 extension will help you to add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning), it's great for web design, or just to verify that your HTML + CSS code is working as expected.                    

Podstawowe informacje o rozszerzeniu

Nazwa Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
Oficjalny URL https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
Opis Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
Rozmiar pliku 12.84 KB
Liczba instalacji 3,151
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2022-06-16
Data Publikacji 2019-04-26
Ocena 5.00/5 Łącznie 7 Oceny
Deweloper Alejandro Zepeda
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/alejandrozepeda/outline-chrome-extension
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outline Chrome Extension",
    "version": "0.1.0",
    "author": "Alejandro Zepeda",
    "description": "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/alejandrozepeda\/outline-chrome-extension",
    "icons": {
        "128": "icons\/outline.png"
    },
    "browser_action": {
        "default_icon": "icons\/outline-black.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "storage",
        "activeTab"
    ]
}