Panel View for Asana

Panelized extension for Asana

Panel View for Asana là gì?

Panel View for Asana là một tiện ích mở rộng Chrome được phát triển bởi dfrankland, và tính năng chính của nó là "Panelized extension for Asana".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Panel View for Asana 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

                        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                    

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

Tên Panel View for Asana Panel View for Asana
ID gkgknajjpoofcddkaclepablhigcpagd
URL Chính Thức https://chromewebstore.google.com/detail/panel-view-for-asana/gkgknajjpoofcddkaclepablhigcpagd
Mô tả Panelized extension for Asana
Kích Thước Tệp 39.75 KB
Số Lần Cài Đặt 77
Phiên Bản Hiện Tại 2.4
Cập Nhật Lần Cuối 2014-12-18
Ngày Phát Hành 2014-12-18
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển dfrankland
Loại Thanh Toán free
Trang Web Mở Rộng http://snackcode.co
Ngôn Ngữ Được Hỗ Trợ 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
}