Outline Chrome Extension

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

Qu'est-ce que Outline Chrome Extension ?

Outline Chrome Extension est une extension Chrome développée par Alejandro Zepeda, et sa fonction principale est "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Outline Chrome Extension

Téléchargez les fichiers d'extension Outline Chrome Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
URL Officiel https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
Description Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
Taille du Fichier 12.84 KB
Nombre d'Installations 3,151
Version Actuelle 0.1.0
Dernière Mise à Jour 2022-06-16
Date de Publication 2019-04-26
Évaluation 5.00/5 Total 7 Évaluations
Développeur Alejandro Zepeda
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/alejandrozepeda/outline-chrome-extension
Langues Prises en Charge 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"
    ]
}