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.”。
扩展截图
下载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 |
ID | gklpoofldhagimjcihlpnibfakgonlmn |
官方URL | 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" } } |