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…

Apa itu Brooklyn Baby?

Brooklyn Baby adalah ekstensi Chrome yang dikembangkan oleh Michael Kamleitner, dan fitur utamanya adalah "This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Brooklyn Baby

Unduh file ekstensi Brooklyn Baby dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Brooklyn Baby Brooklyn Baby
ID eoioibkjnbfaeobmpeeecfceapfndcka
URL Resmi https://chromewebstore.google.com/detail/brooklyn-baby/eoioibkjnbfaeobmpeeecfceapfndcka
Deskripsi This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…
Ukuran File 420 KB
Jumlah Instalasi 58
Versi Saat Ini 0.1
Terakhir Diperbarui 2019-12-10
Tanggal Publikasi 2019-12-10
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Michael Kamleitner
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}