Ufly Shortener

Ufly Shortener

ufly is a URLs shortener to make a link easy to share tweet email to friends.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ufly Shortener",
  "version": "3.1",
  "description": "ufly is a URLs shortener to make a link easy to share tweet email to friends.",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "contextMenus",
    "declarativeContent",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "https://ufly.cc/*",
    "http://ufly.cc/*"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/fav.png",
    "32": "images/fav.png",
    "48": "images/fav.png",
    "128": "images/fav.png"
  }
}