URL Shortener for TikTok

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

什麼是URL Shortener for TikTok?

URL Shortener for TikTok是由Aimadnet開發的Chrome擴展程式,該擴展的主要功能是“Convert long TikTok urls into short links so you can share them easily on social media.”。

擴展截圖

screenshot

下載URL Shortener for TikTok擴展crx文件

下載URL Shortener for TikTok擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 URL Shortener for TikTok URL Shortener for TikTok
ID gklpoofldhagimjcihlpnibfakgonlmn
官方網址 https://chromewebstore.google.com/detail/url-shortener-for-tiktok/gklpoofldhagimjcihlpnibfakgonlmn
簡介 Convert long TikTok urls into short links so you can share them easily on social media.
檔案大小 61.03 KB
安裝次數 291
目前版本 1.0.1
更新時間 2021-09-30
上架時間 2021-09-16
評分 3.00/5 共 2 次評分
開發者 Aimadnet
電子郵箱 [email protected]
付費類型 free
擴展官網 https://tokurlshortener.com/
說明頁面URL https://tokurlshortener.com/
支援的語言 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"
    }
}