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 là gì?

Brooklyn Baby là một tiện ích mở rộng Chrome được phát triển bởi Michael Kamleitner, và tính năng chính của nó là "This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Brooklyn Baby

Tải xuống các tệp mở rộng Brooklyn Baby dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Brooklyn Baby Brooklyn Baby
ID eoioibkjnbfaeobmpeeecfceapfndcka
URL Chính Thức https://chromewebstore.google.com/detail/brooklyn-baby/eoioibkjnbfaeobmpeeecfceapfndcka
Mô tả This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…
Kích Thước Tệp 420 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2019-12-10
Ngày Phát Hành 2019-12-10
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Michael Kamleitner
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}