Cloudy

Turn those websites gray.

Cloudyคืออะไร?

Cloudy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andy Morgan และคุณลักษณะหลักของมันคือ "Turn those websites gray."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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
}