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.
Vad är Asana Recently Completed Tasks?
Asana Recently Completed Tasks är en Chrome-tillägg utvecklad av Vaughan, och dess huvudfunktion är "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.".
Tilläggsskärmbilder
Ladda ner Asana Recently Completed Tasks-förlängningens CRX-fil
Ladda ner Asana Recently Completed Tasks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
Namn | Asana Recently Completed Tasks |
ID | eijmdadhpeciojloijjodpolgnlepecj |
Officiell webbadress | https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj |
Beskrivning | This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017. |
Filstorlek | 549 KB |
Antal Installationer | 86 |
Aktuell Version | 0.1.1 |
Senast Uppdaterad | 2019-03-05 |
Publiceringsdatum | 2019-03-05 |
Betyg | 5.00/5 Totalt 8 Betyg |
Utvecklare | Vaughan |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension |
Hjälpsida URL | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues |
Stödda Språk | 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" ] } |