Asana Expander
Automatically show all comments on an Asana task an expand longer comments.
Qu'est-ce que Asana Expander ?
Asana Expander est une extension Chrome développée par Stefan Zweifel, et sa fonction principale est "Automatically show all comments on an Asana task an expand longer comments.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Asana Expander
Téléchargez les fichiers d'extension Asana Expander au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Do you also hate to click on those "See more" links in Asana, just to see the last sentence of a longer comment? Or did you also miss an important comment in a longer comment thread in an Asana Task? This extension solves this problem my automatically clicking on those links whenever you open a task with many comments or when a comment is longer than 300 characters. Note: The extension currently doesn't work in Asana's Inbox view.
Informations de Base sur l'Extension
Nom | Asana Expander |
ID | goplcobjbaafmhoadgihbepeejbajbki |
URL Officiel | https://chromewebstore.google.com/detail/asana-expander/goplcobjbaafmhoadgihbepeejbajbki |
Description | Automatically show all comments on an Asana task an expand longer comments. |
Taille du Fichier | 11.61 KB |
Nombre d'Installations | 242 |
Version Actuelle | 3.0.0 |
Dernière Mise à Jour | 2023-06-30 |
Date de Publication | 2020-04-17 |
Évaluation | 4.80/5 Total 5 Évaluations |
Développeur | Stefan Zweifel |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/stefanzweifel/asana-expander-extension |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Automatically show all comments on an Asana task an expand longer comments.", "version": "3.0.0", "name": "Asana Expander", "homepage_url": "https:\/\/github.com\/stefanzweifel\/asana-expander-extension", "manifest_version": 3, "icons": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "96": "icon\/96.png", "128": "icon\/128.png" }, "permissions": [ "tabs" ], "host_permissions": [ "*:\/\/*.asana.com\/*" ], "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.asana.com\/*" ], "js": [ "src\/content.js" ], "run_at": "document_end" } ], "__chrome|firefox__author": "Stefan Zweifel", "__opera__developer": { "name": "Stefan Zweifel" }, "__firefox__applications": { "gecko": { "id": "{754FB1AD-CC3B-4856-B6A0-7786F8CA9D20}" } } } |