Asana Custom Fields Summarizer

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

What is Asana Custom Fields Summarizer?

Asana Custom Fields Summarizer is a Chrome extension developed by jordan, and its main feature is "Automatically sums your Asana custom fields, by headers and sections!".

Extension Screenshots

screenshot

Download Asana Custom Fields Summarizer Extension CRX File

Download Asana Custom Fields Summarizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Asana Custom Fields Summarizer Asana Custom Fields Summarizer
ID macdpfbpmamdhlpplkgcjdcpfikeonlp
Official URL https://chromewebstore.google.com/detail/asana-custom-fields-summa/macdpfbpmamdhlpplkgcjdcpfikeonlp
Description Automatically sums your Asana custom fields, by headers and sections!
File Size 1.15 MB
Installation Count 119
Current Version 0.0.1
Last Updated 2017-10-11
Publish Date 2017-10-11
Rating 3.67/5 Total 3 Ratings
Developer jordan
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}