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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nick Thompson และคุณลักษณะหลักของมันคือ "This extension provides a button on a trello card to copy the short url to the clipboard."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello Short URL

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}