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 هو إضافة Chrome تم تطويرها بواسطة Vaughan، والميزة الرئيسية لها هي "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Asana Recently Completed Tasks
قم بتنزيل ملفات الامتداد Asana Recently Completed Tasks بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" ] } |