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文件
下載Asana Recently Completed Tasks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
名稱 | Asana Recently Completed Tasks |
ID | eijmdadhpeciojloijjodpolgnlepecj |
官方網址 | 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" ] } |