Cloudy

Turn those websites gray.

什么是Cloudy?

Cloudy是由Andy Morgan开发的Chrome扩展程序,该扩展的主要功能是“Turn those websites gray.”。

扩展截图

screenshot
screenshot
screenshot

下载Cloudy扩展crx文件

下载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 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
}