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文件

下載Panel View for Asana擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}