Outline Chrome Extension

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

Vad är Outline Chrome Extension?

Outline Chrome Extension är en Chrome-tillägg utvecklad av Alejandro Zepeda, och dess huvudfunktion är "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

Tilläggsskärmbilder

screenshot

Ladda ner Outline Chrome Extension-förlängningens CRX-fil

Ladda ner Outline Chrome Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
Officiell webbadress https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
Beskrivning Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
Filstorlek 12.84 KB
Antal Installationer 3,151
Aktuell Version 0.1.0
Senast Uppdaterad 2022-06-16
Publiceringsdatum 2019-04-26
Betyg 5.00/5 Totalt 7 Betyg
Utvecklare Alejandro Zepeda
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/alejandrozepeda/outline-chrome-extension
Stödda Språk 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"
    ]
}