Asana Recently Completed Tasks
This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.
Asana Recently Completed Tasks란 무엇입니까?
Asana Recently Completed Tasks은(는) Vaughan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017."입니다.
확장 프로그램 스크린샷
Asana Recently Completed Tasks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
확장 프로그램 기본 정보
이름 | Asana Recently Completed Tasks |
ID | eijmdadhpeciojloijjodpolgnlepecj |
공식 URL | https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj |
설명 | This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017. |
파일 크기 | 549 KB |
설치 횟수 | 86 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2019-03-05 |
출시 날짜 | 2019-03-05 |
평점 | 5.00/5 총 8 개의 평점 |
개발자 | Vaughan |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension |
도움말 페이지 URL | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Asana Recently Completed Tasks", "description": "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.", "version": "0.1.1", "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/app.asana.com\/*" ], "css": [ "style.global.css", "style.css" ], "js": [ "content-script-injector.js" ], "all_frames": false } ], "web_accessible_resources": [ "content-script.js" ] } |