Url Shortener

Url Shortener

Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url

Merlin
Additional files are visible only to premium users

manifest.json


{
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "bg.js"
  },
  "options_page": "options.html",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Url Shortener",
  "version": "14.0.8",
  "manifest_version": 3,
  "description": "Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url",
  "action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "scripting"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "mac": "Command+Shift+L",
        "default": "Ctrl+Shift+L"
      }
    }
  },
  "host_permissions": [
    "https://tinyurl.com/*"
  ]
}