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…
Vad är Brooklyn Baby?
Brooklyn Baby är en Chrome-tillägg utvecklad av Michael Kamleitner, och dess huvudfunktion är "This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the…".
Tilläggsskärmbilder
Ladda ner Brooklyn Baby-förlängningens CRX-fil
Ladda ner Brooklyn Baby-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | eoioibkjnbfaeobmpeeecfceapfndcka |
Officiell webbadress | https://chromewebstore.google.com/detail/brooklyn-baby/eoioibkjnbfaeobmpeeecfceapfndcka |
Beskrivning | This extension will tone down every website to a grayscale version. Go full on hipster with 100% grayscale or choose the just the… |
Filstorlek | 420 KB |
Antal Installationer | 58 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2019-12-10 |
Publiceringsdatum | 2019-12-10 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Michael Kamleitner |
Betalningssätt | free |
Stödda Språk | 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" ] } |