Asana Custom Fields Summarizer

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

什么是Asana Custom Fields Summarizer?

Asana Custom Fields Summarizer是由jordan开发的Chrome扩展程序,该扩展的主要功能是“Automatically sums your Asana custom fields, by headers and sections!”。

扩展截图

screenshot

下载Asana Custom Fields Summarizer扩展crx文件

下载Asana Custom Fields Summarizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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).                    

扩展基本信息

名称 Asana Custom Fields Summarizer Asana Custom Fields Summarizer
ID macdpfbpmamdhlpplkgcjdcpfikeonlp
官方URL https://chromewebstore.google.com/detail/asana-custom-fields-summa/macdpfbpmamdhlpplkgcjdcpfikeonlp
简介 Automatically sums your Asana custom fields, by headers and sections!
文件大小 1.15 MB
安装次数 119
当前版本 0.0.1
更新时间 2017-10-11
上架时间 2017-10-11
评分 3.67/5 共3次评分
开发者 jordan
付费类型 free
支持的语言 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"
            ]
        }
    ]
}