Outline Chrome Extension

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

Cos'è Outline Chrome Extension?

Outline Chrome Extension è un'estensione di Chrome sviluppata da Alejandro Zepeda, e la sua funzione principale è "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Outline Chrome Extension

Scarica i file di estensione Outline Chrome Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
URL Ufficiale https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
Descrizione Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
Dimensione del File 12.84 KB
Conteggio Installazioni 3,151
Versione Corrente 0.1.0
Ultimo Aggiornamento 2022-06-16
Data di Pubblicazione 2019-04-26
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore Alejandro Zepeda
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/alejandrozepeda/outline-chrome-extension
Lingue Supportate 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"
    ]
}