tdo
Keyboard driven, hackable TODO list
tdo là gì?
tdo là một tiện ích mở rộng Chrome được phát triển bởi Marko Stijak, và tính năng chính của nó là "Keyboard driven, hackable TODO list".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng tdo
Tải xuống các tệp mở rộng tdo dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | tdo |
ID | aaaabkbhklmpmlnjnbicdahijpkgnkfk |
URL Chính Thức | https://chromewebstore.google.com/detail/tdo/aaaabkbhklmpmlnjnbicdahijpkgnkfk |
Mô tả | Keyboard driven, hackable TODO list |
Kích Thước Tệp | 114 KB |
Số Lần Cài Đặt | 24 |
Phiên Bản Hiện Tại | 1.0.6 |
Cập Nhật Lần Cuối | 2017-01-16 |
Ngày Phát Hành | 2017-01-16 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Marko Stijak |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://mstijak.github.io/tdo/ |
URL Trang Trợ Giúp | https://github.com/mstijak/tdo |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } } |