Asana Custom Fields Summarizer

Automatically sums your Asana custom fields, by headers and sections!

Asana Custom Fields Summarizer là gì?

Asana Custom Fields Summarizer là một tiện ích mở rộng Chrome được phát triển bởi jordan, và tính năng chính của nó là "Automatically sums your Asana custom fields, by headers and sections!".

Ả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 Custom Fields Summarizer

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

                        Asana Custom Fields Summarizer adds SUM fields on sections and column field headers for projects with numerical custom field columns. The extension updates in real-time, so when any changes you make to the custom field values will bubble up to calculate new aggregated sums! If you're a fan of the SUM function in Excel, this extension is made for you.

Easily toggle the extension on and off by clicking on the extension's browser button (to the right of the browser URL bar).                    

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

Tên Asana Custom Fields Summarizer Asana Custom Fields Summarizer
ID macdpfbpmamdhlpplkgcjdcpfikeonlp
URL Chính Thức https://chromewebstore.google.com/detail/asana-custom-fields-summa/macdpfbpmamdhlpplkgcjdcpfikeonlp
Mô tả Automatically sums your Asana custom fields, by headers and sections!
Kích Thước Tệp 1.15 MB
Số Lần Cài Đặt 119
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2017-10-11
Ngày Phát Hành 2017-10-11
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển jordan
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Asana Custom Fields Summarizer",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Automatically sums your Asana custom fields, by headers and sections!",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon64.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/app.asana.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}