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
公式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
Eメール [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"
            }
        }
    }
}