Panel View for Asana

Panelized extension for Asana

Panel View for Asana란 무엇입니까?

Panel View for Asana은(는) dfrankland에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Panelized extension for Asana"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Panel View for Asana 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is a copy of Panel View for Keep created by Paul Eich (eichefam.net).

To send Asana to a panel you must click "Send to Panel" in the command bar at the bottom of Asana's page. For more info go to read the blog post by Paul here: http://bit.ly/panelupdate2_2

Like this extension? Buy Paul Eiche a cup of coffee!
http://bit.ly/paneldonate                    

확장 프로그램 기본 정보

이름 Panel View for Asana Panel View for Asana
ID gkgknajjpoofcddkaclepablhigcpagd
공식 URL https://chromewebstore.google.com/detail/panel-view-for-asana/gkgknajjpoofcddkaclepablhigcpagd
설명 Panelized extension for Asana
파일 크기 39.75 KB
설치 횟수 77
현재 버전 2.4
최근 업데이트 2014-12-18
출시 날짜 2014-12-18
평점 5.00/5 총 3 개의 평점
개발자 dfrankland
결제 유형 free
확장 프로그램 웹 사이트 http://snackcode.co
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Panel View for Asana",
    "description": "Panelized extension for Asana",
    "version": "2.4",
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/events.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon_16.png"
    },
    "icons": {
        "128": "img\/icon_128.png",
        "16": "img\/icon_16.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/app.asana.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/jquery-2.1.1.min.js"
            ],
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "js\/asana-script.js"
            ],
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}