Trello Short URL

This extension provides a button on a trello card to copy the short url to the clipboard.

Qu'est-ce que Trello Short URL ?

Trello Short URL est une extension Chrome développée par Nick Thompson, et sa fonction principale est "This extension provides a button on a trello card to copy the short url to the clipboard.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Trello Short URL

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

                        Adds a button to Trello cards to copy the short URL straight to the clipboard.

Please report any issues into the GitHub Repo - https://github.com/njt1982/TrelloShortUrl                    

Informations de Base sur l'Extension

Nom Trello Short URL Trello Short URL
ID kknbnjdfmclblpjkedhjfbbkgjomciga
URL Officiel https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga
Description This extension provides a button on a trello card to copy the short url to the clipboard.
Taille du Fichier 22.16 KB
Nombre d'Installations 339
Version Actuelle 0.3
Dernière Mise à Jour 2015-02-02
Date de Publication 2015-02-02
Évaluation 4.40/5 Total 5 Évaluations
Développeur Nick Thompson
Type de Paiement free
Site Web de l'Extension https://github.com/njt1982/TrelloShortUrl
URL de la Page d'Aide https://github.com/njt1982/TrelloShortUrl/issues
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Short URL",
    "description": "This extension provides a button on a trello card to copy the short url to the clipboard.",
    "version": "0.3",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "TrelloShortUrl.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/trello.com\/",
        "clipboardWrite"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}