Deep Link URL Shortener: LinkTw.in

Deep Link URL Shortener: LinkTw.in

Create deep link short URLs that open mobile apps like Amazon and YouTube from any social media browser. NOTE: account required.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Deep Link URL Shortener: LinkTw.in",
  "version": "1.0.3",
  "description": "Create deep link short URLs that open mobile apps like Amazon and YouTube from any social media browser. NOTE: account required.",
  "author": "LinkTwin.com",
  "homepage_url": "https://linktwin.com",
  "action": {
    "default_title": "LinkTwin",
    "default_popup": "./src/popup/index.html",
    "default_icon": {
      "16": "./favicons/16.png",
      "32": "./favicons/32.png",
      "64": "./favicons/64.png"
    }
  },
  "host_permissions": [
    "https://linktw.in/"
  ],
  "options_ui": {
    "page": "./src/options/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "./src/background/background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "clipboardWrite",
    "contextMenus",
    "commands"
  ],
  "icons": {
    "16": "./favicons/16.png",
    "32": "./favicons/32.png",
    "48": "./favicons/48.png",
    "64": "./favicons/64.png",
    "96": "./favicons/96.png"
  },
  "commands": {
    "shorten_current": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      },
      "description": "Shorten current link"
    },
    "shorten_selected": {
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      },
      "description": "Shorten selected text"
    }
  }
}