tdo

Keyboard driven, hackable TODO list

tdoคืออะไร?

tdo เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marko Stijak และคุณลักษณะหลักของมันคือ "Keyboard driven, hackable TODO list"

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

screenshot

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

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

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

                        A flexible TODO list with the following features:

- Markdown support
- Keyboard navigation
- Use of hashtags for categories, priorities, etc
- Auto remove completed items after period of time
- CSS hackability: write functions to assign CSS styles andclasses to tasks and lists
- Gist storage
- Ability to work with a large number of tasks                    

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

ชื่อ tdo tdo
ID aaaabkbhklmpmlnjnbicdahijpkgnkfk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tdo/aaaabkbhklmpmlnjnbicdahijpkgnkfk
คำอธิบาย Keyboard driven, hackable TODO list
ขนาดไฟล์ 114 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2017-01-16
วันที่เผยแพร่ 2017-01-16
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Marko Stijak
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mstijak.github.io/tdo/
URL หน้าช่วยเหลือ https://github.com/mstijak/tdo
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "tdo",
    "version": "1.0.6",
    "description": "Keyboard driven, hackable TODO list",
    "author": "Marko Stijak",
    "homepage_url": "https:\/\/github.com\/mstijak\/tdo",
    "icons": {
        "16": "assets\/icon_16.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.polyfill.io https:\/\/unpkg.com; object-src 'self'",
    "browser_action": {
        "default_icon": "assets\/icon_16.png",
        "default_title": "tdo",
        "default_popup": "index.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "description": "Open tdo.",
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            }
        }
    }
}