Trello Short URL

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

Trello Short URL là gì?

Trello Short URL là một tiện ích mở rộng Chrome được phát triển bởi Nick Thompson, và tính năng chính của nó là "This extension provides a button on a trello card to copy the short url to the clipboard.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello Short URL

Tải xuống các tệp mở rộng Trello Short URL dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello Short URL Trello Short URL
ID kknbnjdfmclblpjkedhjfbbkgjomciga
URL Chính Thức https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga
Mô tả This extension provides a button on a trello card to copy the short url to the clipboard.
Kích Thước Tệp 22.16 KB
Số Lần Cài Đặt 339
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2015-02-02
Ngày Phát Hành 2015-02-02
Đánh Giá 4.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Nick Thompson
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/njt1982/TrelloShortUrl
URL Trang Trợ Giúp https://github.com/njt1982/TrelloShortUrl/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}