Black and White
Makes all background colors white and all text black
Cos'è Black and White?
Black and White è un'estensione di Chrome sviluppata da ehkusdev, e la sua funzione principale è "Makes all background colors white and all text black".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Black and White
Scarica i file di estensione Black and White in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Create visual simplicity on the web by making all text on a page black and all background colors white with the click of a button. You can also use the keyboard shortcuts Ctrl-Shift-0 to turn all text to black on white and Ctrl-Shift-1 to reload the page and remove it. This extension is open source under the MIT License; feel free to alter it to suit your own needs.
Informazioni di Base sull'Estensione
Nome | Black and White |
ID | blmpjmeacjnbcbepgdinbjdgklokpecf |
URL Ufficiale | https://chromewebstore.google.com/detail/black-and-white/blmpjmeacjnbcbepgdinbjdgklokpecf |
Descrizione | Makes all background colors white and all text black |
Dimensione del File | 6.74 KB |
Conteggio Installazioni | 327 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2017-12-09 |
Data di Pubblicazione | 2017-12-09 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | ehkusdev |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Black and White", "manifest_version": 2, "version": "0.1", "description": "Makes all background colors white and all text black", "background": { "scripts": [ "background.js" ] }, "commands": { "black-and-white": { "suggested_key": { "default": "Ctrl+Shift+0", "mac": "Command+Shift+0" }, "description": "Makes text black and background white" }, "remove-black-and-white": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "Command+Shift+1" }, "description": "Removes black and white effect" } }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "blackandwhite.css" ], "permissions": [ "activeTab" ] } |