Shlink It!

Shlink It!

Use your self-hosted Shlink server to create a shortcut to the current URL.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shlink It!",
  "description": "Use your self-hosted Shlink server to create a shortcut to the current URL.",
  "version": "0.1",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "notifications"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/shlink-16.png",
      "48": "/images/shlink-48.png",
      "64": "/images/shlink-64.png",
      "96": "/images/shlink-96.png",
      "128": "/images/shlink-128.png",
      "256": "/images/shlink-256.png"
    }
  },
  "icons": {
    "16": "/images/shlink-16.png",
    "48": "/images/shlink-48.png",
    "64": "/images/shlink-64.png",
    "96": "/images/shlink-96.png",
    "128": "/images/shlink-128.png",
    "256": "/images/shlink-256.png"
  },
  "options_page": "options.html"
}