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