Asana Custom Fields Summarizer

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

Was ist Asana Custom Fields Summarizer?

Asana Custom Fields Summarizer ist eine Chrome-Erweiterung, die von jordan entwickelt wurde, und ihr Hauptmerkmal ist "Automatically sums your Asana custom fields, by headers and sections!".

Erweiterungsscreenshots

screenshot

Asana Custom Fields Summarizer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Asana Custom Fields Summarizer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Asana Custom Fields Summarizer Asana Custom Fields Summarizer
ID macdpfbpmamdhlpplkgcjdcpfikeonlp
Offizielle URL https://chromewebstore.google.com/detail/asana-custom-fields-summa/macdpfbpmamdhlpplkgcjdcpfikeonlp
Beschreibung Automatically sums your Asana custom fields, by headers and sections!
Dateigröße 1.15 MB
Installationsanzahl 119
Aktuelle Version 0.0.1
Letztes Update 2017-10-11
Veröffentlichungsdatum 2017-10-11
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler jordan
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}