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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}