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 là gì?
One Click Asana List là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Rosenberg, và tính năng chính của nó là "With this extension you can see your incomplete tasks in there own category, mark them as complete and add new tasks.".
Ả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 One Click Asana List
Tải xuống các tệp mở rộng One Click Asana List 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | One Click Asana List |
ID | dkcnppddhmclakgfpeepkponohpbikpp |
URL Chính Thức | https://chromewebstore.google.com/detail/one-click-asana-list/dkcnppddhmclakgfpeepkponohpbikpp |
Mô tả | With this extension you can see your incomplete tasks in there own category, mark them as complete and add new tasks. |
Kích Thước Tệp | 180 KB |
Số Lần Cài Đặt | 219 |
Phiên Bản Hiện Tại | 2.0.7 |
Cập Nhật Lần Cuối | 2015-04-11 |
Ngày Phát Hành | 2015-04-11 |
Đánh Giá | 4.14/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Jonathan Rosenberg |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } } |