Asana Extension

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

Asana Extension क्या है?

Asana Extension Nuno द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "With this extension you can see your incomplete tasks, mark them as complete and add new tasks."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Asana Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Asana Extension Asana Extension
ID oheaeephldhdnlglpkgigmlcjcieojfd
आधिकारिक URL https://chromewebstore.google.com/detail/asana-extension/oheaeephldhdnlglpkgigmlcjcieojfd
विवरण With this extension you can see your incomplete tasks, mark them as complete and add new tasks.
फ़ाइल का आकार 130 KB
स्थापना संख्या 2,278
वर्तमान संस्करण 1.0.6
अंतिम अपडेट 2013-04-20
प्रकाशन तिथि 2013-04-19
रेटिंग 3.59/5 कुल 32 रेटिंग्स
डेवलपर Nuno
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}