AzDO Linkinator

Give Azure DevOps (a.k.a. AzDO) short, beautiful and memorable URLs with no effort.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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/*"
  ]
}