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"
    ]
}