Trello Short URL

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

什麼是Trello Short URL?

Trello Short URL是由Nick Thompson開發的Chrome擴展程式,該擴展的主要功能是“This extension provides a button on a trello card to copy the short url to the clipboard.”。

擴展截圖

screenshot

下載Trello Short URL擴展crx文件

下載Trello Short URL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Trello Short URL Trello Short URL
ID kknbnjdfmclblpjkedhjfbbkgjomciga
官方網址 https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga
簡介 This extension provides a button on a trello card to copy the short url to the clipboard.
檔案大小 22.16 KB
安裝次數 339
目前版本 0.3
更新時間 2015-02-02
上架時間 2015-02-02
評分 4.40/5 共 5 次評分
開發者 Nick Thompson
付費類型 free
擴展官網 https://github.com/njt1982/TrelloShortUrl
說明頁面URL https://github.com/njt1982/TrelloShortUrl/issues
支援的語言 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"
    }
}