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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael Kamleitner และคุณลักษณะหลักของมันคือ "This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Brooklyn Baby

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}