AzDO Linkinator

Give Azure DevOps (a.k.a. AzDO) short, beautiful and memorable URLs with no effort.

AzDO Linkinatorคืออะไร?

AzDO Linkinator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://azdo.io และคุณลักษณะหลักของมันคือ "Give Azure DevOps (a.k.a. AzDO) short, beautiful and memorable URLs with no effort."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AzDO Linkinator

ดาวน์โหลดไฟล์ส่วนขยาย AzDO Linkinator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AzDO Linkinator AzDO Linkinator
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\/*"
    ]
}