Edge URL Shortener

Edge URL Shortener

Easily shorten your URLs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Edge URL Shortener",
  "author": "Victor Vlasák",
  "description": "Easily shorten your URLs",
  "version": "2.0.0",
  "default_locale": "en",
  "icons": {
    "16": "images/eus-16.png",
    "25": "images/eus-25.png",
    "32": "images/eus-32.png",
    "48": "images/eus-48.png",
    "128": "images/eus-128.png"
  },
  "permissions": [
    "*://api-ssl.bitly.com/*",
    "*://bitly.com/*",
    "*://tinyurl.com/*",
    "*://urlshortener.vvlasy.cz/*",
    "contextMenus",
    "storage",
    "clipboardWrite",
    "notifications",
    "tabs",
    "identity"
  ],
  "browser_action": {
    "default_icon": {
      "20": "images/eus-20-inactive.png",
      "40": "images/eus-40-inactive.png"
    },
    "default_title": "Edge URL Shortener",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}