Cloudy

Turn those websites gray.

Cloudy란 무엇입니까?

Cloudy은(는) Andy Morgan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn those websites gray."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Cloudy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}