Trello Short URL

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

Wat is Trello Short URL?

Trello Short URL is een Chrome-extensie ontwikkeld door Nick Thompson, en de belangrijkste functie is "This extension provides a button on a trello card to copy the short url to the clipboard.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Trello Short URL

Download Trello Short URL-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Trello Short URL Trello Short URL
ID kknbnjdfmclblpjkedhjfbbkgjomciga
Officiële URL https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga
Beschrijving This extension provides a button on a trello card to copy the short url to the clipboard.
Bestandsgrootte 22.16 KB
Aantal Installaties 339
Huidige Versie 0.3
Laatst Bijgewerkt 2015-02-02
Publicatiedatum 2015-02-02
Beoordeling 4.40/5 Totaal 5 Beoordelingen
Ontwikkelaar Nick Thompson
Betalingswijze free
Extensiewebsite https://github.com/njt1982/TrelloShortUrl
Help Pagina-URL https://github.com/njt1982/TrelloShortUrl/issues
Ondersteunde Talen 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"
    }
}