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.
Wat is Asana Recently Completed Tasks?
Asana Recently Completed Tasks is een Chrome-extensie ontwikkeld door Vaughan, en de belangrijkste functie is "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.".
Extensie Screenshots
Download het CRX-bestand van de extensie Asana Recently Completed Tasks
Download Asana Recently Completed Tasks-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
Naam | Asana Recently Completed Tasks |
ID | eijmdadhpeciojloijjodpolgnlepecj |
Officiële URL | https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj |
Beschrijving | This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017. |
Bestandsgrootte | 549 KB |
Aantal Installaties | 86 |
Huidige Versie | 0.1.1 |
Laatst Bijgewerkt | 2019-03-05 |
Publicatiedatum | 2019-03-05 |
Beoordeling | 5.00/5 Totaal 8 Beoordelingen |
Ontwikkelaar | Vaughan |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension |
Help Pagina-URL | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues |
Ondersteunde Talen | 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" ] } |