URL Shortener for TikTok

URL Shortener for TikTok

Convert long TikTok urls into short links so you can share them easily on social media.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Convert long TikTok urls into short links so you can share them easily on social media.",
  "manifest_version": 2,
  "name": "URL Shortener for TikTok",
  "version": "1.0.2",
  "homepage_url": "https://tokurlshortener.com/",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://tiktok.com/*",
        "*://*.tiktok.com/*"
      ],
      "js": [
        "tiktok.js"
      ],
      "css": [
        "base.css"
      ]
    }
  ],
  "permissions": [
    "*://tiktok.com/*",
    "*://*.tiktok.com/*"
  ],
  "icons": {
    "48": "icon-48.png",
    "96": "icon-96.png"
  }
}