tdo

Keyboard driven, hackable TODO list

什麼是tdo?

tdo是由Marko Stijak開發的Chrome擴展程式,該擴展的主要功能是“Keyboard driven, hackable TODO list”。

擴展截圖

screenshot

下載tdo擴展crx文件

下載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
官方網址 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"
            }
        }
    }
}