Expand URL

Expand URL

Expand any URL to see where a shortened URL is going to take you. Perfect to check if the final link destination is safe.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Expand URL",
  "description": "Expand any URL to see where a shortened URL is going to take you. Perfect to check if the final link destination is safe.",
  "version": "1.1",
  "manifest_version": 3,
  "permissions": [
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon-16.png",
      "32": "icon-32.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    }
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}