blackout

Chrome extension to black out page on icon click

Qu'est-ce que blackout ?

blackout est une extension Chrome développée par Unknown, et sa fonction principale est "Chrome extension to black out page on icon click".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension blackout

Téléchargez les fichiers d'extension blackout au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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?                    

Informations de Base sur l'Extension

Nom blackout blackout
ID boinoigpgcoeakjmiepjnkafiebmpkme
URL Officiel https://chromewebstore.google.com/detail/blackout/boinoigpgcoeakjmiepjnkafiebmpkme
Description Chrome extension to black out page on icon click
Taille du Fichier 216 KB
Nombre d'Installations 139
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-04-20
Date de Publication 2020-04-19
Évaluation 5.00/5 Total 1 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
    ]
}