Stay On Task

This extension blocks websites you don't want to visit, as well as providing a to-do list.

Stay On Taskคืออะไร?

Stay On Task เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension blocks websites you don't want to visit, as well as providing a to-do list."

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

screenshot
screenshot

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

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

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

                        Stay On Task when you browse the Internet. Block any website of your choosing, as well as create a To-do List with time limits. 

Open a new tab, and click on the browser action on the top right of the tab to toggle the menu.                    

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

ชื่อ Stay On Task Stay On Task
ID ihopiehopegcihbohemjoicccjdhgnoc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/stay-on-task/ihopiehopegcihbohemjoicccjdhgnoc
คำอธิบาย This extension blocks websites you don't want to visit, as well as providing a to-do list.
ขนาดไฟล์ 1.41 MB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2017-07-16
วันที่เผยแพร่ 2017-07-16
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stay On Task",
    "description": "This extension blocks websites you don't want to visit, as well as providing a to-do list.",
    "version": "0.0.0.3",
    "browser_action": {
        "default_icon": "exclaim-icon.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "sidenav.css"
            ],
            "js": [
                "jquery.js",
                "sidenav.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "sidenav.html"
    ]
}