blackout

Chrome extension to black out page on icon click

Wat is blackout?

blackout is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Chrome extension to black out page on icon click".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie blackout

Download blackout-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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?                    

Basisinformatie over de Extensie

Naam blackout blackout
ID boinoigpgcoeakjmiepjnkafiebmpkme
Officiële URL https://chromewebstore.google.com/detail/blackout/boinoigpgcoeakjmiepjnkafiebmpkme
Beschrijving Chrome extension to black out page on icon click
Bestandsgrootte 216 KB
Aantal Installaties 139
Huidige Versie 1.0.0
Laatst Bijgewerkt 2020-04-20
Publicatiedatum 2020-04-19
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    ]
}