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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Trello Short URL
قم بتنزيل ملفات الامتداد Trello Short URL بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة المساعدة | 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" } } |