Asana Load More
This extension will load all subtasks in Asana. It also lets you hide certain sections.
Cos'è Asana Load More?
Asana Load More è un'estensione di Chrome sviluppata da Fat Cattitude, LLC, e la sua funzione principale è "This extension will load all subtasks in Asana. It also lets you hide certain sections.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Asana Load More
Scarica i file di estensione Asana Load More 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
This extension will automatically load all subtasks in Asana. It will also allow you to toggle certain subtask sections.
Informazioni di Base sull'Estensione
Nome | |
ID | gmgelaegjlfeldnmlilkeaegejmlgjhf |
URL Ufficiale | https://chrome.google.com/webstore/detail/asana-load-more/gmgelaegjlfeldnmlilkeaegejmlgjhf |
Descrizione | This extension will load all subtasks in Asana. It also lets you hide certain sections. |
Dimensione del File | 110 KB |
Conteggio Installazioni | 703 |
Versione Corrente | 0.0.0.4 |
Ultimo Aggiornamento | 2019-11-13 |
Data di Pubblicazione | 2019-11-09 |
Valutazione | 4.20/5 Totale 10 Valutazioni |
Sviluppatore | Fat Cattitude, LLC |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Asana Load More", "description": "This extension will load all subtasks in Asana. It also lets you hide certain sections.", "version": "0.0.0.4", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Asana Load More" }, "permissions": [ "activeTab", "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.asana.com\/*" ], "js": [ "content.js" ] } ] } |