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.
One Click Asana List क्या है?
One Click Asana List Jonathan Rosenberg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "With this extension you can see your incomplete tasks in there own category, mark them as complete and add new tasks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में One Click Asana List एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | One Click Asana List |
ID | dkcnppddhmclakgfpeepkponohpbikpp |
आधिकारिक URL | https://chromewebstore.google.com/detail/one-click-asana-list/dkcnppddhmclakgfpeepkponohpbikpp |
विवरण | With this extension you can see your incomplete tasks in there own category, mark them as complete and add new tasks. |
फ़ाइल का आकार | 180 KB |
स्थापना संख्या | 219 |
वर्तमान संस्करण | 2.0.7 |
अंतिम अपडेट | 2015-04-11 |
प्रकाशन तिथि | 2015-04-11 |
रेटिंग | 4.14/5 कुल 7 रेटिंग्स |
डेवलपर | Jonathan Rosenberg |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } } } |