blackout

Chrome extension to black out page on icon click

What is blackout?

blackout is a Chrome extension developed by Unknown, and its main feature is "Chrome extension to black out page on icon click".

Extension Screenshots

screenshot

Download blackout Extension CRX File

Download blackout 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

                        Sometimes you just need to hide a tab. This neat little extension will veil your screen in black without changing the page too much. Very useful for apps that share media and audio where you don't want the screen to give away the video. Say for instance a pub quiz you have organised?                    

Extension Basic Information

Name blackout blackout
ID boinoigpgcoeakjmiepjnkafiebmpkme
Official URL https://chromewebstore.google.com/detail/blackout/boinoigpgcoeakjmiepjnkafiebmpkme
Description Chrome extension to black out page on icon click
File Size 216 KB
Installation Count 139
Current Version 1.0.0
Last Updated 2020-04-20
Publish Date 2020-04-19
Rating 5.00/5 Total 1 Ratings
Developer Unknown
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "blackout",
    "short_name": "blackout",
    "version": "1.0.0",
    "description": "Chrome extension to black out page on icon click",
    "author": "Sam Hawkins",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": ".\/images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ]
}