One Click Asana List
With this extension you can see your incomplete tasks in there own category, mark them as complete and add new tasks.
Qu'est-ce que One Click Asana List ?
One Click Asana List est une extension Chrome développée par Jonathan Rosenberg, et sa fonction principale est "With this extension you can see your incomplete tasks in there own category, mark them as complete and add new tasks.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension One Click Asana List
Téléchargez les fichiers d'extension One Click Asana List 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
1) Improved view your incomplete tasks; 2) Mark task as complete; 3) Add new task; 4) Quick link to go to asana.com; The extension code was forked from https://github.com/nunovinhas. Feel feel free to contribute to https://github.com/jonrosenberg/asana-chrome-extension.
Informations de Base sur l'Extension
Nom | One Click Asana List |
ID | dkcnppddhmclakgfpeepkponohpbikpp |
URL Officiel | https://chromewebstore.google.com/detail/one-click-asana-list/dkcnppddhmclakgfpeepkponohpbikpp |
Description | With this extension you can see your incomplete tasks in there own category, mark them as complete and add new tasks. |
Taille du Fichier | 180 KB |
Nombre d'Installations | 219 |
Version Actuelle | 2.0.7 |
Dernière Mise à Jour | 2015-04-11 |
Date de Publication | 2015-04-11 |
Évaluation | 4.14/5 Total 7 Évaluations |
Développeur | Jonathan Rosenberg |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "One Click Asana List", "short_name": "One Click Asana List", "version": "2.0.7", "description": "With this extension you can see your incomplete tasks in there own category, mark them as complete and add new tasks.", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "minimum_chrome_version": "25", "browser_action": { "default_icon": "assets\/asanaSmallLogin.png", "default_title": "Asana", "default_popup": "popup.html" }, "options_page": "options.html", "background": { "persistent": true, "scripts": [ "js\/jquery-1.7.1.min.js", "js\/asana.js", "js\/api_bridge.js", "js\/extension_server.js", "js\/server_model.js", "js\/options.js", "js\/background.js" ] }, "incognito": "split", "offline_enabled": false, "permissions": [ "tabs", "cookies", "webRequest", "webRequestBlocking", "*:\/\/*.asana.com\/*", "*:\/\/use.typekit.net\/*" ], "content_security_policy": "script-src 'self' https:\/\/use.typekit.net; object-src 'self'", "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+A" } } } } |