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
电子邮箱 [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"
            }
        }
    }
}