Firelinks URL Shortner

Firelinks service to convert long URLs or Links of websites to short.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Firelinks URL Shortner",
  "short_name": "Firelinks URL Shortner",
  "version": "2.0",
  "description": "Firelinks service to convert long URLs or Links of websites to short.",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_title": "Firelinks URL Shortner",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "unlimitedStorage",
    "storage",
    "alarms",
    "scripting"
  ]
}