Calm for Chrome

Stop mindless checking by taking a breath before you check! Facilitates alternative, productive ways to take a break.

Calm for Chromeคืออะไร?

Calm for Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Calm.com และคุณลักษณะหลักของมันคือ "Stop mindless checking by taking a breath before you check! Facilitates alternative, productive ways to take a break."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Calm for Chrome

ดาวน์โหลดไฟล์ส่วนขยาย Calm for Chrome ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Do you find yourself mindlessly checking websites and wish you did so less frequently?  Calm for Chrome will invite you to take a deep breath before letting you check a website on your “blacklist.” It doesn’t block you from doing anything but instead just makes you more mindful of what you are doing.  If you realize, after taking a deep breath, that you were mindlessly checking a site, you can, at that point, simply close the page, or alternatively, take a healthier break offered via www.calm.com.

We believe this extension will work better than a website blocker or an extension that completely blocks websites, because those types of extensions eventually becomes so annoying that we uninstall them.  

If the breath bubble is occurring too frequently for you, we offer a number of ways to adjust this extension.  You can add and remove sites from your blacklist.  You can also make the bubble occur a smaller percent of the time (e.g., if you only want an occasional mindfulness reminder), and you can set a minimum amount of time that must pass before a breath bubble is allowed to occur again (e.g., if once you start taking a break you want at least 15 minutes of time without a mindfulness reminder). 

Welcome to a calmer chrome!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Calm for Chrome Calm for Chrome
ID lfkkcdgmlmoakojipfnkelpjifglmffe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/calm-for-chrome/lfkkcdgmlmoakojipfnkelpjifglmffe
คำอธิบาย Stop mindless checking by taking a breath before you check! Facilitates alternative, productive ways to take a break.
ขนาดไฟล์ 63.65 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 0.0.0.2
อัปเดตครั้งล่าสุด 2018-01-17
วันที่เผยแพร่ 2018-01-17
คะแนน 4.52/5 รวมทั้งหมด 42 คะแนน
ผู้พัฒนา Calm.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.calm.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Calm for Chrome",
    "description": "Stop mindless checking by taking a breath before you check! Facilitates alternative, productive ways to take a break.",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "icons": {
        "16": "images\/calm.png",
        "48": "images\/calm.png",
        "128": "images\/calm.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/calm.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.calm.com\/breathe\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.calm.com\/meditate\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_meditate.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "activeTab",
        "storage",
        "background"
    ]
}