Foxly - URL Shortener

Foxly - URL Shortener

Foxly is the perfect url shortener for anyone who wants to make their links shorter and easier to remember. With Foxly, you can…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Foxly - URL Shortener",
  "description": "",
  "version": "0.1.2",
  "action": {
    "default_popup": "index.html",
    "default_title": "Foxly - URL Shortener"
  },
  "icons": {
    "16": "foxlyme.png",
    "48": "foxlyme.png",
    "128": "foxlyme.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://app.foxlyme.com/*",
        "http://app.foxlyme.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}