Focus

Extension to stop procrastination.

Focusคืออะไร?

Focus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Oliver Song และคุณลักษณะหลักของมันคือ "Extension to stop procrastination."

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

screenshot

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

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

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

                        Stops you from using sites that waste your time.

Update 1.1
Doesn't use Jquery!

Update 1.2
Chrome store policies, more sites, better wording.

Update 1.3
Manifest v3, fix Google Docs

Update 1.4
Small bugfix                    

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

ชื่อ Focus Focus
ID iadpfonbgmlpndbfnhcmpnlcdahgbkbc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc
คำอธิบาย Extension to stop procrastination.
ขนาดไฟล์ 70.69 KB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2022-12-09
วันที่เผยแพร่ 2012-11-24
คะแนน 2.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Oliver Song
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus",
    "version": "1.4",
    "manifest_version": 3,
    "description": "Extension to stop procrastination.",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon2.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [],
    "action": {
        "name": "Focus",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.google.com\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script.js",
                "shoop.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}