AzDO Linkinator

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

AzDO Linkinator란 무엇입니까?

AzDO Linkinator은(는) https://azdo.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Give Azure DevOps (a.k.a. AzDO) short, beautiful and memorable URLs with no effort."입니다.

확장 프로그램 스크린샷

screenshot

AzDO Linkinator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 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\/*"
    ]
}