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…
Co to jest Brooklyn Baby?
Brooklyn Baby to rozszerzenie Chrome opracowane przez Michael Kamleitner, a jego główną funkcją jest „This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Brooklyn Baby
Pobierz pliki rozszerzeń Brooklyn Baby w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | eoioibkjnbfaeobmpeeecfceapfndcka |
Oficjalny URL | https://chromewebstore.google.com/detail/brooklyn-baby/eoioibkjnbfaeobmpeeecfceapfndcka |
Opis | This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the… |
Rozmiar pliku | 420 KB |
Liczba instalacji | 58 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2019-12-10 |
Data Publikacji | 2019-12-10 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Michael Kamleitner |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |