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…”。
擴展截圖
下載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
擴展基本資訊
名稱 | |
ID | eoioibkjnbfaeobmpeeecfceapfndcka |
官方網址 | 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" ] } |