Asana Extension

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

Asana Extensionとは何ですか?

Asana ExtensionはNunoによって開発されたChromeの拡張機能で、その主な機能は「With this extension you can see your incomplete tasks, mark them as complete and add new tasks.」です。

拡張機能のスクリーンショット

screenshot

Asana Extension拡張機能のCRXファイルをダウンロード

Asana Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
}