Cloudy
Turn those websites gray.
Was ist Cloudy?
Cloudy ist eine Chrome-Erweiterung, die von Andy Morgan entwickelt wurde, und ihr Hauptmerkmal ist "Turn those websites gray.".
Erweiterungsscreenshots
Cloudy-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cloudy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Whether you're trying to minimise the draw of time-wasting websites or just looking for a little less color in your internet experience, Cloudy could just be the right Chrome Extension for you. With Cloudy you can select the websites you want it to run in, and the websites you don't, giving you the ability to customise Cloudy to your unique needs. And with just a simple click of the Cloudy icon, Cloudy can be paused, bringing everything back to full color exactly when you need it. Best of all, Cloudy is completely free...and always will be. Enjoy! Latest changes in version 1.2.2: - Fixed 'Not running by default' bug.
Grundlegende Informationen zur Erweiterung
Name | Cloudy |
ID | jfiicemmkondhllomamcghhedjhnkefb |
Offizielle URL | https://chromewebstore.google.com/detail/cloudy/jfiicemmkondhllomamcghhedjhnkefb |
Beschreibung | Turn those websites gray. |
Dateigröße | 6.52 KB |
Installationsanzahl | 227 |
Aktuelle Version | 1.2.2 |
Letztes Update | 2018-03-27 |
Veröffentlichungsdatum | 2018-03-26 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Andy Morgan |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cloudy", "short_name": "Cloudy", "description": "Turn those websites gray.", "version": "1.2.2", "author": "Andy Morgan", "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "images\/icon_24.png", "default_title": "Cloudy" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": true }, "manifest_version": 2 } |