TikTok Downloader
Download TikTok videos with the click of a single button
什么是TikTok Downloader?
TikTok Downloader是由Aponventure开发的Chrome扩展程序,该扩展的主要功能是“Download TikTok videos with the click of a single button”。
扩展截图
下载TikTok Downloader扩展crx文件
下载TikTok Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Download TikTok videos with the click of a single button in browser and in mobile view to get hte same feel as the app.
扩展基本信息
名称 | |
ID | ghfacigpedfmpgpgmapmajhnkmdaegif |
官方URL | https://chrome.google.com/webstore/detail/tiktok-downloader/ghfacigpedfmpgpgmapmajhnkmdaegif |
简介 | Download TikTok videos with the click of a single button |
文件大小 | 259 KB |
安装次数 | 1,844 |
当前版本 | 1.0.0 |
更新时间 | 2020-07-11 |
上架时间 | 2020-07-11 |
评分 | 2.00/5 共6次评分 |
开发者 | Aponventure |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TikTok Downloader", "description": "Download TikTok videos with the click of a single button", "version": "1.0.0", "short_name": "TikTokDL", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "TikTok Downloader", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.tiktok.com\/@*\/video\/*", "https:\/\/www.tiktok.com\/@*", "https:\/\/www.tiktok.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "activeTab" ] } |