Do Not Disturb

Stay focussed on what you have to do

Do Not Disturbคืออะไร?

Do Not Disturb เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sjoerd de Bruin และคุณลักษณะหลักของมันคือ "Stay focussed on what you have to do"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Do Not Disturb

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

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

                        Ever had to do something, but got distracted by so many other things on the internet? Well, you're not the only one.

Let's say, you have to work on an essay. You're trying to focus on it, but Twitter, Facebook and your mail are much more fun, so you will give yourself an excuse and you're going to do something else than you're essay for 5 minutes. And after 20 minutes, you're still not working on your essay. Don't you think it's much more efficient to have a way to block all the distracting sites?

That's exactly where Do Not Disturb comes in. This Chrome extension blocks all the sites, except the ones you really need. When you're trying to visit a site which is not on your unblocked sites list, you will see a message and the site will not be opened.

But that's not the only feature of Do Not Disturb. Of course you sometimes need a little break, so that's why Do Not Disturb comes with a pause function. You can set the time of the pause yourself, from 30 seconds to 10 minutes. When you're working on something, and need a break, you can easily pause Do Not Disturb and browse all the sites again. Once your time is over, all sites will be blocked again (except the ones on you're unblocked sites list). You can pause Do Not Disturb multiple times, but you have to wait between them.

You can download and use Do Not Disturb for the price of absolutely nothing. If you like it, you can pay me by telling your friends!

Visit http://donotdisturb.jeffreywashere.nl for more information.                    

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

ชื่อ Do Not Disturb Do Not Disturb
ID ncpekhjjckjhhilnglgjcgpgapgiggbp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/do-not-disturb/ncpekhjjckjhhilnglgjcgpgapgiggbp
คำอธิบาย Stay focussed on what you have to do
ขนาดไฟล์ 588 KB
จำนวนการติดตั้ง 681
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2013-07-28
วันที่เผยแพร่ 2013-07-28
คะแนน 3.64/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา Sjoerd de Bruin
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://donotdisturb.jeffreywashere.nl
URL หน้าช่วยเหลือ http://donotdisturb.jeffreywashere.nl/#slider-1
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Do Not Disturb",
    "version": "2.0.1",
    "description": "Stay focussed on what you have to do",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon_empty_19.png"
    },
    "icons": {
        "16": "icon_cross_16.png",
        "48": "icon_cross_48.png",
        "128": "icon_cross_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "removecontent.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications"
    ]
}