Social Habit Disruption

Stay focused while working online by reminding yourself to avoid addictive content feeds. Dismiss the pop-up for small breaks.

Social Habit Disruptionคืออะไร?

Social Habit Disruption เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Max Kirchoff และคุณลักษณะหลักของมันคือ "Stay focused while working online by reminding yourself to avoid addictive content feeds. Dismiss the pop-up for small breaks."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Social Habit Disruption

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

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

                        Social media and content websites actively hook us into habits of mindless consumption while using the web. Without even thinking about it, you will open a tab and start to check Facebook or Reddit. Social Habit Disruption gives you the ability to disrupt the habits that eat up time you could be spending on your own projects.

** PRIVACY INFO ** 
I value you privacy and this app does not track, modify or use your personal data or usage information in any way. It simply injects a pop-up on social media and content sites and tracks a timer. If you'd like to verify that, you can see all the sourcecode at https://github.com/maxkirchoff/social-habit-disruption


When enabled the extension will display a pop-up for the following sites: Facebook, Twitter, Google+, Instagram, Reddit, Tumblr and YouTube. More sites will be added later, please let us know if you want one added.

The pop-up displayed will give a reminder that there's more important things to do than flip through content like a zombie.

If you want to take a break and look for some cat videos on YouTube or what's top on Reddit, simply select a time and dismiss the pop-up. 

After that time, the pop-up will come back and remind you to get back to it!                    

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

ชื่อ Social Habit Disruption Social Habit Disruption
ID ckplbiibhpgbgmkkompjadpjhojkbail
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/social-habit-disruption/ckplbiibhpgbgmkkompjadpjhojkbail
คำอธิบาย Stay focused while working online by reminding yourself to avoid addictive content feeds. Dismiss the pop-up for small breaks.
ขนาดไฟล์ 96.05 KB
จำนวนการติดตั้ง 53
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2014-11-10
วันที่เผยแพร่ 2014-11-10
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Max Kirchoff
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social Habit Disruption",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Stay focused while working online by reminding yourself to avoid addictive content feeds. Dismiss the pop-up for small breaks.",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_page": "src\/options\/index.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.reddit.com\/*",
                "*:\/\/*.tumblr.com\/*",
                "*:\/\/*.instagram.com\/*",
                "*:\/\/plus.google.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.reddit.com\/*",
                "*:\/\/*.tumblr.com\/*",
                "*:\/\/*.instagram.com\/*",
                "*:\/\/plus.google.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "lib\/jquery.min.js"
            ]
        }
    ]
}