Cloudy
Turn those websites gray.
O que é Cloudy?
Cloudy é uma extensão do Chrome desenvolvida por Andy Morgan, e sua principal característica é "Turn those websites gray.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cloudy
Baixe arquivos de extensão Cloudy no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Cloudy |
ID | jfiicemmkondhllomamcghhedjhnkefb |
URL Oficial | https://chromewebstore.google.com/detail/cloudy/jfiicemmkondhllomamcghhedjhnkefb |
Descrição | Turn those websites gray. |
Tamanho do Arquivo | 6.52 KB |
Contagem de Instalações | 227 |
Versão Atual | 1.2.2 |
Última Atualização | 2018-03-27 |
Data de Publicação | 2018-03-26 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Andy Morgan |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |