Panel View for Asana

Panelized extension for Asana

Was ist Panel View for Asana?

Panel View for Asana ist eine Chrome-Erweiterung, die von dfrankland entwickelt wurde, und ihr Hauptmerkmal ist "Panelized extension for Asana".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Panel View for Asana-Erweiterungs-CRX-Datei herunterladen

Laden Sie Panel View for Asana-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Panel View for Asana Panel View for Asana
ID gkgknajjpoofcddkaclepablhigcpagd
Offizielle URL https://chromewebstore.google.com/detail/panel-view-for-asana/gkgknajjpoofcddkaclepablhigcpagd
Beschreibung Panelized extension for Asana
Dateigröße 39.75 KB
Installationsanzahl 77
Aktuelle Version 2.4
Letztes Update 2014-12-18
Veröffentlichungsdatum 2014-12-18
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler dfrankland
Zahlungsart free
Erweiterungswebsite http://snackcode.co
Unterstützte Sprachen 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
}