URL Shortener by LinkJoy

URL Shortener by LinkJoy

Shorten Long URLs on your Custom Domain in 2 Clicks or Less

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "URL Shortener by LinkJoy",
  "description": "Shorten Long URLs on your Custom Domain in 2 Clicks or Less",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://app.linkjoy.io/*"
  ],
  "icons": {
    "16": "icons/linkjoy-logo.png",
    "48": "icons/linkjoy-logo.png",
    "128": "icons/linkjoy-logo.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.linkjoy.io/*"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/linkjoy-logo.png",
      "38": "icons/linkjoy-logo.png"
    }
  },
  "version": "1.1.3",
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  }
}