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.
Cos'è Asana Recently Completed Tasks?
Asana Recently Completed Tasks è un'estensione di Chrome sviluppata da Vaughan, e la sua funzione principale è "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Asana Recently Completed Tasks
Scarica i file di estensione Asana Recently Completed Tasks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
| Nome | |
| ID | eijmdadhpeciojloijjodpolgnlepecj |
| URL Ufficiale | https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj |
| Descrizione | This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017. |
| Dimensione del File | 549 KB |
| Conteggio Installazioni | 86 |
| Versione Corrente | 0.1.1 |
| Ultimo Aggiornamento | 2019-03-05 |
| Data di Pubblicazione | 2019-03-05 |
| Valutazione | 5.00/5 Totale 8 Valutazioni |
| Sviluppatore | Vaughan |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension |
| URL della Pagina di Aiuto | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues |
| Lingue Supportate | 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"
]
} | |