XSSL URL Shortener

XSSL URL Shortener

Create secure short links on any website with a few clicks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "XSSL URL Shortener",
  "description": "Create secure short links on any website with a few clicks.",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./images/icon16.png",
      "32": "./images/icon32.png",
      "48": "./images/icon48.png",
      "128": "./images/icon128.png"
    }
  },
  "icons": {
    "16": "./images/icon16.png",
    "32": "./images/icon32.png",
    "48": "./images/icon48.png",
    "128": "./images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "contextMenus",
    "scripting",
    "notifications"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}