Get a .txt file of all the TikTok videos from an user/audio/hashtag/liked videos/saved videos etc, so that they can be downloaded with yt-dlp.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "tiktok-to-ytdlp",
"description": "Get a .txt file of all the TikTok videos from an user/audio/hashtag/liked videos/saved videos etc, so that they can be downloaded with yt-dlp.",
"version": "1.3.1",
"permissions": [
"storage"
],
"action": {
"default_popup": "./ui/index.html"
},
"content_scripts": [
{
"js": [
"extensionHandler.js"
],
"matches": [
"*://*.tiktok.com/*"
]
}
],
"icons": {
"16": "./icons/16.png",
"48": "./icons/48.png",
"128": "./icons/128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{07b46526-6164-427c-a135-542654e1da00}"
}
}
}