URL Shortener for TikTok

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

Cos'è URL Shortener for TikTok?

URL Shortener for TikTok è un'estensione di Chrome sviluppata da Aimadnet, e la sua funzione principale è "Convert long TikTok urls into short links so you can share them easily on social media.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione URL Shortener for TikTok

Scarica i file di estensione URL Shortener for TikTok in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome URL Shortener for TikTok URL Shortener for TikTok
ID gklpoofldhagimjcihlpnibfakgonlmn
URL Ufficiale https://chromewebstore.google.com/detail/url-shortener-for-tiktok/gklpoofldhagimjcihlpnibfakgonlmn
Descrizione Convert long TikTok urls into short links so you can share them easily on social media.
Dimensione del File 61.03 KB
Conteggio Installazioni 291
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-09-30
Data di Pubblicazione 2021-09-16
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Aimadnet
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://tokurlshortener.com/
URL della Pagina di Aiuto https://tokurlshortener.com/
Lingue Supportate 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"
    }
}