Url Shortener

Url Shortener

The best way to create short links using T.LY, JPEG.ly, Bitly, Rebrandly, TinyUrl, and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "homepage_url": "https://t.ly/products/link-shortener-extension/",
  "version": "2.1.1",
  "icons": {
    "16": "media/icons/icon16.png",
    "48": "media/icons/icon48.png",
    "128": "media/icons/icon128.png"
  },
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "38": "media/icons/icon38.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "optional_permissions": [
    "scripting"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      }
    }
  }
}