Outline Chrome Extension

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

Wat is Outline Chrome Extension?

Outline Chrome Extension is een Chrome-extensie ontwikkeld door Alejandro Zepeda, en de belangrijkste functie is "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Outline Chrome Extension

Download Outline Chrome Extension-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 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.                    

Basisinformatie over de Extensie

Naam Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
Officiële URL https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
Beschrijving Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
Bestandsgrootte 12.84 KB
Aantal Installaties 3,151
Huidige Versie 0.1.0
Laatst Bijgewerkt 2022-06-16
Publicatiedatum 2019-04-26
Beoordeling 5.00/5 Totaal 7 Beoordelingen
Ontwikkelaar Alejandro Zepeda
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/alejandrozepeda/outline-chrome-extension
Ondersteunde Talen 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"
    ]
}