URL Shortener for TikTok

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

What is URL Shortener for TikTok?

URL Shortener for TikTok is a Chrome extension developed by Aimadnet, and its main feature is "Convert long TikTok urls into short links so you can share them easily on social media.".

Extension Screenshots

screenshot

Download URL Shortener for TikTok Extension CRX File

Download URL Shortener for TikTok extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        With TikTok URL Shortner tool, you will be able to convert long TikTok urls into short links so you can share them easily on social media.

TikTok has this feature built-in only on mobile but not on desktop, we think this feature should be available on desktop too, that's why we created this tool.                    

Extension Basic Information

Name URL Shortener for TikTok URL Shortener for TikTok
ID gklpoofldhagimjcihlpnibfakgonlmn
Official URL https://chromewebstore.google.com/detail/url-shortener-for-tiktok/gklpoofldhagimjcihlpnibfakgonlmn
Description Convert long TikTok urls into short links so you can share them easily on social media.
File Size 61.03 KB
Installation Count 291
Current Version 1.0.1
Last Updated 2021-09-30
Publish Date 2021-09-16
Rating 3.00/5 Total 2 Ratings
Developer Aimadnet
Email [email protected]
Payment Type free
Extension Website https://tokurlshortener.com/
Help Page URL https://tokurlshortener.com/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "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.1",
    "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"
    }
}