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…
Wat is Brooklyn Baby?
Brooklyn Baby is een Chrome-extensie ontwikkeld door Michael Kamleitner, en de belangrijkste functie is "This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…".
Extensie Screenshots
Download het CRX-bestand van de extensie Brooklyn Baby
Download Brooklyn Baby-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | eoioibkjnbfaeobmpeeecfceapfndcka |
Officiële URL | https://chromewebstore.google.com/detail/brooklyn-baby/eoioibkjnbfaeobmpeeecfceapfndcka |
Beschrijving | This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the… |
Bestandsgrootte | 420 KB |
Aantal Installaties | 58 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2019-12-10 |
Publicatiedatum | 2019-12-10 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Michael Kamleitner |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |