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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension provides a button on a trello card to copy the short url to the clipboard."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trello Short URL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" } } |