Asana Recently Completed Tasks

This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.

Was ist Asana Recently Completed Tasks?

Asana Recently Completed Tasks ist eine Chrome-Erweiterung, die von Vaughan entwickelt wurde, und ihr Hauptmerkmal ist "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.".

Erweiterungsscreenshots

screenshot

Asana Recently Completed Tasks-Erweiterungs-CRX-Datei herunterladen

Laden Sie Asana Recently Completed Tasks-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

                                            

Grundlegende Informationen zur Erweiterung

Name Asana Recently Completed Tasks Asana Recently Completed Tasks
ID eijmdadhpeciojloijjodpolgnlepecj
Offizielle URL https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj
Beschreibung This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.
Dateigröße 549 KB
Installationsanzahl 86
Aktuelle Version 0.1.1
Letztes Update 2019-03-05
Veröffentlichungsdatum 2019-03-05
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler Vaughan
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension
Hilfeseite URL https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Asana Recently Completed Tasks",
    "description": "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.",
    "version": "0.1.1",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "css": [
                "style.global.css",
                "style.css"
            ],
            "js": [
                "content-script-injector.js"
            ],
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "content-script.js"
    ]
}