Asana Extension

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

Asana Extension là gì?

Asana Extension là một tiện ích mở rộng Chrome được phát triển bởi Nuno, và tính năng chính của nó là "With this extension you can see your incomplete tasks, mark them as complete and add new tasks.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Asana Extension

Tải xuống các tệp mở rộng Asana Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Asana Extension Asana Extension
ID oheaeephldhdnlglpkgigmlcjcieojfd
URL Chính Thức https://chromewebstore.google.com/detail/asana-extension/oheaeephldhdnlglpkgigmlcjcieojfd
Mô tả With this extension you can see your incomplete tasks, mark them as complete and add new tasks.
Kích Thước Tệp 130 KB
Số Lần Cài Đặt 2,278
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2013-04-20
Ngày Phát Hành 2013-04-19
Đánh Giá 3.59/5 Tổng số 32 Đánh Giá
Nhà Phát Triển Nuno
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}