tdo

Keyboard driven, hackable TODO list

ما هو tdo؟

tdo هو إضافة Chrome تم تطويرها بواسطة Marko Stijak، والميزة الرئيسية لها هي "Keyboard driven, hackable TODO list".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة tdo

قم بتنزيل ملفات الامتداد tdo بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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"
            }
        }
    }
}