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.
Apa itu Asana Recently Completed Tasks?
Asana Recently Completed Tasks adalah ekstensi Chrome yang dikembangkan oleh Vaughan, dan fitur utamanya adalah "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Asana Recently Completed Tasks
Unduh file ekstensi Asana Recently Completed Tasks dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Informasi Dasar Ekstensi
Nama | Asana Recently Completed Tasks |
ID | eijmdadhpeciojloijjodpolgnlepecj |
URL Resmi | https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj |
Deskripsi | This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017. |
Ukuran File | 549 KB |
Jumlah Instalasi | 86 |
Versi Saat Ini | 0.1.1 |
Terakhir Diperbarui | 2019-03-05 |
Tanggal Publikasi | 2019-03-05 |
Penilaian | 5.00/5 Total 8 Penilaian |
Pengembang | Vaughan |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension |
URL Halaman Bantuan | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues |
Bahasa yang Didukung | 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" ] } |