Get Focused - Avoid distracting websites

Helps you avoid distracting websites and stay focused on your goals

Get Focused - Avoid distracting websitesคืออะไร?

Get Focused - Avoid distracting websites เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Irfan Gumelar และคุณลักษณะหลักของมันคือ "Helps you avoid distracting websites and stay focused on your goals"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Get Focused - Avoid distracting websites

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

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

                        Get Focused helps you be more productive by avoiding distracting websites and stay focused on your goals.

Do you ever working on some tasks but somehow ended up scrolling through to the endless bottom of your Twitter timeline? At that point, you know you have been distracted from your initial goal.

This chrome extension will help you browsing more responsibly.

Features:

1 ) Set task for today
Setting tasks helps you to focus your efforts, allow you to measure your progress, and give you the motivation to strive forward. 

2 ) Avoid distracting websites
When you visit distracting websites, we will remind you of your undone tasks so you can rethink your action. 

3 ) Consequences reminder
When you choose to "snooze" our close tab reminder, we will tell you how much time you might waste by doing so

3 ) Task tracker
By tracking how much it takes for you to complete a task, you can measure how productive you are. Maybe you can do it better, right?

This extension is unforceful by design, it won't suddenly close your tabs or block the access to the distracting websites, it's all on you. But it will remind you what's good for you to get things done.

This extension is configurable, you can tailor your own distracting websites list, though by default we have listed 85 websites that we consider distracting/time-wasting. 

Also, this extension is under active development if you have a feature suggestion, problem, found a bug or question please let me know by sending an email to [email protected].

WHAT'S NEW :

V. 0.5.0:
- Released with public visibility
- Added Consequences Reminder feature

V 0.4.2 :
- Initial release with unlisted visibility                    

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

ชื่อ Get Focused - Avoid distracting websites Get Focused - Avoid distracting websites
ID fdelooiaamfiiecfhaohipkfbdiemobl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/get-focused-avoid-distrac/fdelooiaamfiiecfhaohipkfbdiemobl
คำอธิบาย Helps you avoid distracting websites and stay focused on your goals
ขนาดไฟล์ 135 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 0.5.0
อัปเดตครั้งล่าสุด 2020-08-27
วันที่เผยแพร่ 2020-08-27
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Irfan Gumelar
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Get Focused - Avoid distracting websites",
    "version": "0.5.0",
    "description": "Helps you avoid distracting websites and stay focused on your goals",
    "permissions": [
        "storage",
        "activeTab",
        "alarms",
        "tabs"
    ],
    "background": {
        "scripts": [
            "psl.js",
            "background.js",
            "backgroundReminderPopup.js",
            "backgroundSnoozeCounterPopup.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "reminderPopup.css"
            ],
            "js": [
                "reminderPopup.js",
                "snoozeCounterPopup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "option.html",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "*.woff2",
        "reminder.html",
        "snooze-counter-popup.html"
    ]
}