Twa.si URL-shortener

Twa.si URL-shortener

Official Twa.si URL-shortener extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twa.si URL-shortener",
  "version": "1.4",
  "manifest_version": 2,
  "description": "Official Twa.si URL-shortener extension.",
  "author": "Twasi-Team",
  "homepage_url": "https://github.com/twasi/twasi-shortener-chrome-extension",
  "offline_enabled": false,
  "permissions": [
    "activeTab",
    "tabs",
    "https://twa.si/*",
    "contextMenus",
    "clipboardWrite",
    "notifications"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_title": "Shorten this URL with twa.si",
    "default_popup": "ui/html/popup.html",
    "default_icon": "icons/64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twa.si/*"
      ],
      "js": [
        "dist/hide-ribbon.js"
      ]
    }
  ],
  "background": {
    "page": "ui/html/background.html"
  }
}