Cloudy
Turn those websites gray.
Τι είναι το Cloudy;
Το Cloudy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andy Morgan, και η κύρια λειτουργία του είναι "Turn those websites gray.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Cloudy
Λήψη αρχείων επέκτασης Cloudy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Cloudy |
ID | jfiicemmkondhllomamcghhedjhnkefb |
Επίσημο URL | https://chromewebstore.google.com/detail/cloudy/jfiicemmkondhllomamcghhedjhnkefb |
Περιγραφή | Turn those websites gray. |
Μέγεθος Αρχείου | 6.52 KB |
Αριθμός Εγκαταστάσεων | 227 |
Τρέχουσα Έκδοση | 1.2.2 |
Τελευταία Ενημέρωση | 2018-03-27 |
Ημερομηνία Δημοσίευσης | 2018-03-26 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Andy Morgan |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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 } |