Panel View for Asana

Panelized extension for Asana

Cos'è Panel View for Asana?

Panel View for Asana è un'estensione di Chrome sviluppata da dfrankland, e la sua funzione principale è "Panelized extension for Asana".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Panel View for Asana

Scarica i file di estensione Panel View for Asana 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 is a copy of Panel View for Keep created by Paul Eich (eichefam.net).

To send Asana to a panel you must click "Send to Panel" in the command bar at the bottom of Asana's page. For more info go to read the blog post by Paul here: http://bit.ly/panelupdate2_2

Like this extension? Buy Paul Eiche a cup of coffee!
http://bit.ly/paneldonate                    

Informazioni di Base sull'Estensione

Nome Panel View for Asana Panel View for Asana
ID gkgknajjpoofcddkaclepablhigcpagd
URL Ufficiale https://chromewebstore.google.com/detail/panel-view-for-asana/gkgknajjpoofcddkaclepablhigcpagd
Descrizione Panelized extension for Asana
Dimensione del File 39.75 KB
Conteggio Installazioni 77
Versione Corrente 2.4
Ultimo Aggiornamento 2014-12-18
Data di Pubblicazione 2014-12-18
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore dfrankland
Tipo di Pagamento free
Sito Web dell'Estensione http://snackcode.co
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Panel View for Asana",
    "description": "Panelized extension for Asana",
    "version": "2.4",
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/events.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon_16.png"
    },
    "icons": {
        "128": "img\/icon_128.png",
        "16": "img\/icon_16.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/app.asana.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/jquery-2.1.1.min.js"
            ],
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "js\/asana-script.js"
            ],
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}