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…

Brooklyn Babyとは何ですか?

Brooklyn BabyはMichael Kamleitnerによって開発されたChromeの拡張機能で、その主な機能は「This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…」です。

拡張機能のスクリーンショット

screenshot

Brooklyn Baby拡張機能のCRXファイルをダウンロード

Brooklyn Baby拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Brooklyn Baby Brooklyn Baby
ID eoioibkjnbfaeobmpeeecfceapfndcka
公式URL https://chromewebstore.google.com/detail/brooklyn-baby/eoioibkjnbfaeobmpeeecfceapfndcka
説明 This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…
ファイルサイズ 420 KB
インストール数 58
現在のバージョン 0.1
最終更新日 2019-12-10
公開日 2019-12-10
評価 5.00/5 合計 1 レビュー
開発者 Michael Kamleitner
支払い方法 free
対応言語 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"
    ]
}