Trello Short URL

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

What is Trello Short URL?

Trello Short URL is a Chrome extension developed by Nick Thompson, and its main feature is "This extension provides a button on a trello card to copy the short url to the clipboard.".

Extension Screenshots

screenshot

Download Trello Short URL Extension CRX File

Download Trello Short URL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Trello Short URL Trello Short URL
ID kknbnjdfmclblpjkedhjfbbkgjomciga
Official URL 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.
File Size 22.16 KB
Installation Count 339
Current Version 0.3
Last Updated 2015-02-02
Publish Date 2015-02-02
Rating 4.40/5 Total 5 Ratings
Developer Nick Thompson
Payment Type free
Extension Website https://github.com/njt1982/TrelloShortUrl
Help Page URL https://github.com/njt1982/TrelloShortUrl/issues
Supported Languages 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"
    }
}