URL Shortener for TikTok

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

Was ist URL Shortener for TikTok?

URL Shortener for TikTok ist eine Chrome-Erweiterung, die von Aimadnet entwickelt wurde, und ihr Hauptmerkmal ist "Convert long TikTok urls into short links so you can share them easily on social media.".

Erweiterungsscreenshots

screenshot

URL Shortener for TikTok-Erweiterungs-CRX-Datei herunterladen

Laden Sie URL Shortener for TikTok-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name URL Shortener for TikTok URL Shortener for TikTok
ID gklpoofldhagimjcihlpnibfakgonlmn
Offizielle URL https://chromewebstore.google.com/detail/url-shortener-for-tiktok/gklpoofldhagimjcihlpnibfakgonlmn
Beschreibung Convert long TikTok urls into short links so you can share them easily on social media.
Dateigröße 61.03 KB
Installationsanzahl 291
Aktuelle Version 1.0.1
Letztes Update 2021-09-30
Veröffentlichungsdatum 2021-09-16
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Aimadnet
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://tokurlshortener.com/
Hilfeseite URL https://tokurlshortener.com/
Unterstützte Sprachen 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"
    }
}