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"
    }
}