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…

O que é Brooklyn Baby?

Brooklyn Baby é uma extensão do Chrome desenvolvida por Michael Kamleitner, e sua principal característica é "This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Brooklyn Baby

Baixe arquivos de extensão Brooklyn Baby no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Brooklyn Baby Brooklyn Baby
ID eoioibkjnbfaeobmpeeecfceapfndcka
URL Oficial https://chromewebstore.google.com/detail/brooklyn-baby/eoioibkjnbfaeobmpeeecfceapfndcka
Descrição This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…
Tamanho do Arquivo 420 KB
Contagem de Instalações 58
Versão Atual 0.1
Última Atualização 2019-12-10
Data de Publicação 2019-12-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Michael Kamleitner
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}