Trello Checklist Plus

Extends the Trello Checklist with usefull functions

Qu'est-ce que Trello Checklist Plus ?

Trello Checklist Plus est une extension Chrome développée par b.geissler89, et sa fonction principale est "Extends the Trello Checklist with usefull functions".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Trello Checklist Plus

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

                        -Feature to extrude a Checklist Item into a own Card and create a back-link without deleting the actual.                    

Informations de Base sur l'Extension

Nom Trello Checklist Plus Trello Checklist Plus
ID lgpellhflojpkpbhiehgfeoiodbhpeil
URL Officiel https://chromewebstore.google.com/detail/trello-checklist-plus/lgpellhflojpkpbhiehgfeoiodbhpeil
Description Extends the Trello Checklist with usefull functions
Taille du Fichier 311 KB
Nombre d'Installations 53
Version Actuelle 0.0.12
Dernière Mise à Jour 2016-07-20
Date de Publication 2016-07-20
Évaluation 2.88/5 Total 8 Évaluations
Développeur b.geissler89
Type de Paiement free
Site Web de l'Extension https://www.web-ben.de
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello Checklist Plus",
    "author": "Benjamin Gei\u00dfler",
    "short_name": "TC+",
    "version": "0.0.12",
    "manifest_version": 2,
    "description": "Extends the Trello Checklist with usefull functions",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "index.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/api.trello.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/trello.com\/1\/authorize?*",
                "http:\/\/trello.com\/1\/authorize?*"
            ],
            "js": [
                "bower_components\/jQuery\/dist\/jquery.js",
                "scripts\/contentscript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/trello.com\/1\/OAuthAuthorizeToken*"
            ],
            "js": [
                "background\/inject-workaround.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "background\/chrome_ex_oauth.html"
    ],
    "permissions": [
        "tabs",
        "https:\/\/trello.com\/1\/OAuthGetRequestToken",
        "https:\/\/trello.com\/1\/OAuthAuthorizeToken",
        "https:\/\/trello.com\/1\/OAuthGetAccessToken"
    ]
}