Learn 3 ways to download all videos from a TikTok account without ​​a watermark in one go. You don’t need to install any third-party apps on your phone or computer. Moreover, all these methods are free to download unlimited TikTok videos without watermark. Based on the device you use, choose the corresponding method. 

Bulk Tiktok Downloader Shortcut

The built-in Shortcuts app allows you to automate tasks by combining actions from various apps. Each custom task is called a shortcut. I have created a shortcut to bulk download TikTok videos.

You can use it to download all videos from a TikTok account at once on your iPhone or iPad. Later, I will also make it work on Mac. You can follow the steps below to try it out.

Bulk Download TikTok Videos

Step 1. Click the button below to get the shortcut. You can open the shortcut to see all the actions, so feel safe to add it.

Step 2. Go to Settings > Shortcuts > Advanced, and turn on “Allow Running Scripts”. This is required to run the shortcut.

Step 3. Open Safari and go to the TikTok user profile page that you want to download videos from. 

Step 4 (optional). Tap on the “Aa” icon at the address bar to request a Desktop website. It only loads limited videos on the mobile version of the website. If you want to download all TikTok videos from that user, you should request a desktop website and scroll down to load more videos. 

Step 5. Tap the Share button of Safari at the button and scroll down to select the Bulk TikTok Downloader shortcut, not the share button of TikTok.

That’s all you need to do. The shortcut will automatically download TikTok videos from the user one by one and save them to Photo Album. Additionally, you can also copy one or more TikTok video URLs to run this shortcut. It will download all the videos from TikTok on your iPhone. 

This is only the initial release of the shortcut. It will not work if you run it from the TikTok share sheet. I will continue to update this shortcut to make it better and more convenient. In the next version, I will make it work on Mac. If you have any suggestions, please feel free to contact me.

Download All Tiktok Videos with Chrome Extension

Mass Tiktok Video Downloader is a browser extension for downloading TikTok videos without watermarks from any TikTok user. It can help you download all videos from TikTok profile page and download individual videos.

Download All Tiktok Videos with Chrome Extension

Once you install this extension, it adds a download button to every TikTok video on the current page. When you go to a TikTok user profile page, you will see a Download All button next to username and profile picture. Click this button and it will allow you to select some of the videos or download them all at once. 

This extension enables you to save TikTok content for later viewing or offline enjoyment, all without the annoying watermark. When you download individual TikTok videos, it will save them in MP4 format. If you click the Download button, it will download them as a zip file containing all the videos.

There are also ways to install Chrome extensions on Android and you may give it a try.

Bulk Tiktok Video Downloader Online

If you don’t want to use a browser extension to download TikTok videos, you can also use an online tool. However, I cannot find any online tool to download all videos by username or profile URL.

Instead, you can use a bulk TikTok video downloader online to download multiple videos at once. To copy multiple TikTok video URLs at once, I have written a script to ease the process. Here is how to use it. 

Step 1. Go to a TikTok profile page that you want to download videos from.

Step 2. Press F12 on Windows or Option + ⌘ + J on Mac to open the Developer Tools. 

Bulk Tiktok Video Downloader Online

Step 3. Under the Console tab, paste the code below in the console and press Enter. The script will automatically scroll the page down to load more videos and display all URLs.

(function () {
    'use strict';
    // Use a Set to store unique URLs
    var result = new Set();
    // Wait for the page to load completely
    window.addEventListener('load', function () {
        // Extract the TikTok username from the URL
        const usernameMatch = window.location.pathname.match(/^\/@([^/]+)/);
        const username = usernameMatch ? usernameMatch[1] : null;
        if (username) {
            // Get all video links from the page
            const videoElements = document.querySelectorAll('a[href*="/video/"]');
            videoElements.forEach((video) => {
                const videoID = video.href.split('/video/')[1];
                const videoURL = `https://www.tiktok.com/@${username}/video/${videoID}`;
                result.add(videoURL); // Add each URL to the Set
            });
            // Convert the Set back to an array
            const uniqueVideoURLs = Array.from(result);
            // Log the unique video URLs to the console
            console.log('Unique TikTok video URLs:');
            console.log(uniqueVideoURLs);
            // Copy the video URLs to the clipboard
            const allURLs = uniqueVideoURLs.join('\n');
            copyToClipboard(allURLs);
            console.log('Unique TikTok video URLs copied to clipboard.');
        } else {
            console.log('Unable to determine TikTok username. Please check the page structure.');
        }
    });
    // Function to copy text to clipboard
    function copyToClipboard(text) {
        const tempInput = document.createElement('input');
        tempInput.value = text;
        document.body.appendChild(tempInput);
        tempInput.select();
        document.execCommand('copy');
        document.body.removeChild(tempInput);
    }
})();

Step 4. Copy the URLs displayed in the console and paste them into a Bulk TikTok video downloader online tool.

If you do a Google search, you can find many online bulk TikTok videos downloaders. For example, you can use Revesery Tiktok Video Mass Downloader. Just page the URLs that you copied into the tool and click the Download button. 

On Revesery website, it also offers an online tool to bulk download Instagram posts from any user

There’s More

The above 3 methods all can download all TikTok videos from any user in one go without watermark. If you don’t mind the watermark, you can also use yt-dlp from command line on any device to download all TikTok videos by enter the TikTok profile URL. 

If you prefer a GUI tool, you can use the 4K Toolkit to download all TikTok videos for free. The free version allows you to download 50 videos a day. The paid version allows you to download unlimited videos without watermark.

Leave a Reply

Your email address will not be published. Required fields are marked *

You cannot copy content of this page