Asana Extension

With this extension you can see your incomplete tasks, mark them as complete and add new tasks.

Cos'è Asana Extension?

Asana Extension è un'estensione di Chrome sviluppata da Nuno, e la sua funzione principale è "With this extension you can see your incomplete tasks, mark them as complete and add new tasks.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Asana Extension

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

                        In version 1.0.6 you can:
  
1) View your incomplete tasks;
2) Mark task as complete;
3) Add new task;
4) Quick link to go to asana.com;

The extension code is available at https://github.com/nunovinhas/asana-chrome-extension feel free to contribute.                    

Informazioni di Base sull'Estensione

Nome Asana Extension Asana Extension
ID oheaeephldhdnlglpkgigmlcjcieojfd
URL Ufficiale https://chromewebstore.google.com/detail/asana-extension/oheaeephldhdnlglpkgigmlcjcieojfd
Descrizione With this extension you can see your incomplete tasks, mark them as complete and add new tasks.
Dimensione del File 130 KB
Conteggio Installazioni 2,278
Versione Corrente 1.0.6
Ultimo Aggiornamento 2013-04-20
Data di Pubblicazione 2013-04-19
Valutazione 3.59/5 Totale 32 Valutazioni
Sviluppatore Nuno
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "browser_action": {
        "default_icon": "assets\/asanaSmallLogin.png",
        "default_popup": "popup.html",
        "default_title": "Asana"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "With this extension you can see your incomplete tasks, mark them as complete and add new tasks.",
    "background": "background.html",
    "name": "Asana Extension",
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "cookies",
        "*:\/\/*.asana.com\/*",
        "*:\/\/localhost.org\/*"
    ],
    "minimum_chrome_version": "16",
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png",
        "16": "assets\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "exclude_matches": [
                "*:\/\/*.asana.com\/*"
            ],
            "js": [
                "js\/asana.js",
                "js\/selection_client.js",
                "js\/quick_add_client.js",
                "js\/background.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2,
    "version": "1.0.6"
}