Trello No Strikethrough

Removes the strikethrough for completed tasks on Trello

Qu'est-ce que Trello No Strikethrough ?

Trello No Strikethrough est une extension Chrome développée par paradite, et sa fonction principale est "Removes the strikethrough for completed tasks on Trello".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Trello No Strikethrough

Téléchargez les fichiers d'extension Trello No Strikethrough 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

                        Trello strikethrough for completed tasks by default can be annoying.

This extensions removes Trello strikethrough for completed tasks in checklists.

Source code:
https://github.com/paradite/trello-no-strikethrough                    

Informations de Base sur l'Extension

Nom Trello No Strikethrough Trello No Strikethrough
ID jalipphihlpncggkbgmhdanibebphhkb
URL Officiel https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb
Description Removes the strikethrough for completed tasks on Trello
Taille du Fichier 7.12 KB
Nombre d'Installations 258
Version Actuelle 1.0.2
Dernière Mise à Jour 2022-10-16
Date de Publication 2017-04-30
Évaluation 5.00/5 Total 4 Évaluations
Développeur paradite
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/paradite/trello-no-strikethrough
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello No Strikethrough",
    "description": "Removes the strikethrough for completed tasks on Trello",
    "icons": {
        "128": "icon.png"
    },
    "version": "1.0.2",
    "background": {
        "page": "popup.html"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Trello No Strikethrough"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "css": [
                "mystyles.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/trello.com\/*"
    ]
}