Display: none;

An extension to hide element on screen using display:none; CSS property

What is Display: none;?

Display: none; is a Chrome extension developed by Dorian, and its main feature is "An extension to hide element on screen using display:none; CSS property".

Extension Screenshots

screenshot

Download Display: none; Extension CRX File

Download Display: none; 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

                        A context menu option to hide an element on a page using the simple CSS property : display: none;                    

Extension Basic Information

Name Display: none; Display: none;
ID djcocilemlnkfokbpjegkdmllfjldeda
Official URL https://chromewebstore.google.com/detail/display-none/djcocilemlnkfokbpjegkdmllfjldeda
Description An extension to hide element on screen using display:none; CSS property
File Size 23.48 KB
Installation Count 211
Current Version 0.1.1
Last Updated 2021-04-21
Publish Date 2021-04-20
Rating 5.00/5 Total 1 Ratings
Developer Dorian
Email [email protected]
Payment Type free
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Display: none;",
    "version": "0.1.1",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "img\/hide_logo.png",
        "48": "img\/hide_logo_48.png",
        "128": "img\/hide_logo_128.png"
    },
    "description": "An extension to hide element on screen using display:none; CSS property",
    "optional_permissions": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": ""
}