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…
Qu'est-ce que Brooklyn Baby ?
Brooklyn Baby est une extension Chrome développée par Michael Kamleitner, et sa fonction principale est "This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Brooklyn Baby
Téléchargez les fichiers d'extension Brooklyn Baby au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | eoioibkjnbfaeobmpeeecfceapfndcka |
URL Officiel | https://chromewebstore.google.com/detail/brooklyn-baby/eoioibkjnbfaeobmpeeecfceapfndcka |
Description | This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the… |
Taille du Fichier | 420 KB |
Nombre d'Installations | 58 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2019-12-10 |
Date de Publication | 2019-12-10 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Michael Kamleitner |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |