Outline Chrome Extension

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

What is Outline Chrome Extension?

Outline Chrome Extension is a Chrome extension developed by Alejandro Zepeda, and its main feature is "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

Extension Screenshots

screenshot

Download Outline Chrome Extension Extension CRX File

Download Outline Chrome Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
Official URL 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).
File Size 12.84 KB
Installation Count 3,151
Current Version 0.1.0
Last Updated 2022-06-16
Publish Date 2019-04-26
Rating 5.00/5 Total 7 Ratings
Developer Alejandro Zepeda
Email [email protected]
Payment Type free
Extension Website https://github.com/alejandrozepeda/outline-chrome-extension
Supported Languages 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"
    ]
}