tdo

Keyboard driven, hackable TODO list

What is tdo?

tdo is a Chrome extension developed by Marko Stijak, and its main feature is "Keyboard driven, hackable TODO list".

Extension Screenshots

screenshot

Download tdo Extension CRX File

Download tdo extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name tdo tdo
ID aaaabkbhklmpmlnjnbicdahijpkgnkfk
Official URL https://chromewebstore.google.com/detail/tdo/aaaabkbhklmpmlnjnbicdahijpkgnkfk
Description Keyboard driven, hackable TODO list
File Size 114 KB
Installation Count 24
Current Version 1.0.6
Last Updated 2017-01-16
Publish Date 2017-01-16
Rating 5.00/5 Total 4 Ratings
Developer Marko Stijak
Email [email protected]
Payment Type free
Extension Website https://mstijak.github.io/tdo/
Help Page URL https://github.com/mstijak/tdo
Supported Languages 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"
            }
        }
    }
}