URL Shortener

URL Shortener

List of url shortener services available 1. tinyurl.com 2. bit.ly 3. cutt.ly 4. is.gd 5. v.gd 6. tny.im Shortern the page/selected URL Tired of copying the URL and going to a website to short it use this extension to shorten it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "name": "URL Shortener",
  "short_name": "Shorten URL using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened URL",
  "version": "13.0.0",
  "manifest_version": 2,
  "description": "Shorten the page/selected URL using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR Code for shortened URL)",
  "browser_action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "https://tinyurl.com/*",
    "clipboardWrite"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{61ca75f9-d75a-4c04-9246-03f0e75a7786}"
    }
  }
}