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.

Qu'est-ce que Asana Recently Completed Tasks ?

Asana Recently Completed Tasks est une extension Chrome développée par Vaughan, et sa fonction principale est "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Asana Recently Completed Tasks

Téléchargez les fichiers d'extension Asana Recently Completed Tasks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom Asana Recently Completed Tasks Asana Recently Completed Tasks
ID eijmdadhpeciojloijjodpolgnlepecj
URL Officiel https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj
Description This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.
Taille du Fichier 549 KB
Nombre d'Installations 86
Version Actuelle 0.1.1
Dernière Mise à Jour 2019-03-05
Date de Publication 2019-03-05
Évaluation 5.00/5 Total 8 Évaluations
Développeur Vaughan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension
URL de la Page d'Aide https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues
Langues Prises en Charge 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"
    ]
}