Brooklyn Baby

This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…

Cos'è Brooklyn Baby?

Brooklyn Baby è un'estensione di Chrome sviluppata da Michael Kamleitner, e la sua funzione principale è "This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Brooklyn Baby

Scarica i file di estensione Brooklyn Baby in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the right level of black/white that suits your taste. Exclude particular websites, if you really must. 

"I'm churning out novels like
Beat poetry on Amphetamines"

Brooklyn Baby - Lana del Rey                    

Informazioni di Base sull'Estensione

Nome Brooklyn Baby Brooklyn Baby
ID eoioibkjnbfaeobmpeeecfceapfndcka
URL Ufficiale https://chromewebstore.google.com/detail/brooklyn-baby/eoioibkjnbfaeobmpeeecfceapfndcka
Descrizione This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…
Dimensione del File 420 KB
Conteggio Installazioni 58
Versione Corrente 0.1
Ultimo Aggiornamento 2019-12-10
Data di Pubblicazione 2019-12-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Michael Kamleitner
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Brooklyn Baby",
    "description": "",
    "version": "0.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}