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
公式URL 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"
    }
}