Asana Expander

Automatically show all comments on an Asana task an expand longer comments.

Cos'è Asana Expander?

Asana Expander è un'estensione di Chrome sviluppata da Stefan Zweifel, e la sua funzione principale è "Automatically show all comments on an Asana task an expand longer comments.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Asana Expander

Scarica i file di estensione Asana Expander 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Asana Expander Asana Expander
ID goplcobjbaafmhoadgihbepeejbajbki
URL Ufficiale https://chromewebstore.google.com/detail/asana-expander/goplcobjbaafmhoadgihbepeejbajbki
Descrizione Automatically show all comments on an Asana task an expand longer comments.
Dimensione del File 11.61 KB
Conteggio Installazioni 242
Versione Corrente 3.0.0
Ultimo Aggiornamento 2023-06-30
Data di Pubblicazione 2020-04-17
Valutazione 4.80/5 Totale 5 Valutazioni
Sviluppatore Stefan Zweifel
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/stefanzweifel/asana-expander-extension
Lingue Supportate 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}"
        }
    }
}