tdo
Keyboard driven, hackable TODO list
Qu'est-ce que tdo ?
tdo est une extension Chrome développée par Marko Stijak, et sa fonction principale est "Keyboard driven, hackable TODO list".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension tdo
Téléchargez les fichiers d'extension tdo au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | tdo |
ID | aaaabkbhklmpmlnjnbicdahijpkgnkfk |
URL Officiel | https://chromewebstore.google.com/detail/tdo/aaaabkbhklmpmlnjnbicdahijpkgnkfk |
Description | Keyboard driven, hackable TODO list |
Taille du Fichier | 114 KB |
Nombre d'Installations | 24 |
Version Actuelle | 1.0.6 |
Dernière Mise à Jour | 2017-01-16 |
Date de Publication | 2017-01-16 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | Marko Stijak |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://mstijak.github.io/tdo/ |
URL de la Page d'Aide | https://github.com/mstijak/tdo |
Langues Prises en Charge | 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" } } } } |