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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } } } |