AzDO Linkinator
Give Azure DevOps (a.k.a. AzDO) short, beautiful and memorable URLs with no effort.
AzDO Linkinator क्या है?
AzDO Linkinator https://azdo.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Give Azure DevOps (a.k.a. AzDO) short, beautiful and memorable URLs with no effort."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AzDO Linkinator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Creates nice, short and memorable links for Azure DevOps projects. Azure DevOps (AzDO) provides comprehensive tools for developers, but their URLs are less than optimal. It's almost impossible to construct them manually and pasting them on emails, chats and elsewhere is a constant eyesore. URLs are UIs, so why not make them awesome for AzDO? This extension provides precisely that: an intuitive way to create beautiful URLs from AzDO current ones, although you can construct them manually of course! A handy toolbar icon and a shortcut Ctrl+Shit+S will light-up automatically when you're browsing dev.azure.com and allow you to create a shortlink for the current page effortlessly.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | copkjnnnmemkbfmolfacgmfiecfjopkk |
आधिकारिक URL | https://chromewebstore.google.com/detail/azdo-linkinator/copkjnnnmemkbfmolfacgmfiecfjopkk |
विवरण | Give Azure DevOps (a.k.a. AzDO) short, beautiful and memorable URLs with no effort. |
फ़ाइल का आकार | 56.24 KB |
स्थापना संख्या | 90 |
वर्तमान संस्करण | 0.7.0 |
अंतिम अपडेट | 2023-05-04 |
प्रकाशन तिथि | 2020-02-07 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | https://azdo.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/kzu/azdo |
सहायता पृष्ठ URL | https://github.com/kzu/azdo/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AzDO Linkinator", "author": "Daniel Cazzulino", "version": "0.7.0", "description": "Give Azure DevOps (a.k.a. AzDO) short, beautiful and memorable URLs with no effort.", "icons": { "16": "images\/AzDO16.png", "24": "images\/AzDO24.png", "32": "images\/AzDO32.png", "48": "images\/AzDO48.png", "64": "images\/AzDO64.png", "128": "images\/AzDO128.png", "300": "images\/AzDO300.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "azdo-shorten-url": { "suggested_key": { "default": "Ctrl+Shift+S" }, "description": "Shorten AzDO Url and copy to clipboard" } }, "content_scripts": [ { "matches": [ "https:\/\/devdiv.visualstudio.com\/*" ], "js": [ "jquery-3.2.1.min.js" ] }, { "matches": [ "https:\/\/dev.azure.com\/*" ], "js": [ "jquery-3.2.1.min.js" ] }, { "matches": [ "https:\/\/developercommunity.visualstudio.com\/content\/problem\/*" ], "js": [ "jquery-3.2.1.min.js" ] } ], "page_action": { "default_icon": { "16": "images\/AzDO16.png", "24": "images\/AzDO24.png", "32": "images\/AzDO32.png", "64": "images\/AzDO64.png", "128": "images\/AzDO128.png" }, "default_title": "Ctrl+Shift+S | Create a nice short AzDO link and copy to clipboard!" }, "permissions": [ "declarativeContent", "activeTab", "webNavigation", "https:\/\/dev.azure.com\/*" ] } |