How to transfer bookmarks from the Xiaomi browser: all working ways

Xiaomi’s browser (also known as Mi Browser or Mint Browser depending on the firmware version) stores bookmarks locally by default, which creates problems when changing your smartphone or resetting. Unlike Google Chrome or Mozilla Firefox, there is no built-in export feature to universal formats like.html β€” but solutions exist. This article covers all current bookmarking methods, including official and workarounds, taking into account the features of MIUI 14/15 and HyperOS firmware.

The main challenge is that Xiaomi is actively integrating its services into the ecosystem, but the documentation on working with the browser is often inferior in detail to competitive solutions. We tested each method on Redmi Note 12 Pro+, Xiaomi 13T and POCO F5 devices – all instructions are relevant for 2026. If you plan to switch to another smartphone or just want to make a backup, read on.

1. synchronize bookmarks through Mi Account (official way)

The most reliable method is to link the browser to a Xiaomi account, which works on all devices with a Xiaomi account. MIUI/HyperOS It automatically syncs bookmarks between gadgets:

  • πŸ”„ Automatic synchronization is only enabled when you first log in to your browser under your account. If you have already used the browser without a binding, bookmarks will not be retroactively transferred.
  • πŸ“± Restriction of the ecosystem: transfer is possible only to other Xiaomi devices with the same account.
  • πŸ”’ Security: Data is encrypted, but Xiaomi can theoretically access it (see Privacy Policy).

To activate synchronization:

  1. Open the Mi Browser and tap the profile icon (usually in the lower right corner).
  2. Select Sign in to Mi Account and log in.
  3. Go to Settings β†’ Synchronization and turn on the Bookmark slider.
  4. Wait for the process to be completed (it can take up to 5 minutes depending on the number of bookmarks).

⚠️ Note: If you have previously used a browser without an account, local bookmarks will not be combined with cloud ones automatically - they will have to be transferred manually (see section 3.

πŸ“Š What browser do you use on Xiaomi?
Mi Browser/Mint Browser
Google Chrome
Mozilla Firefox
Other

2. Export bookmarks through file (for technically trained)

There is no official export to.html or.json in Mi Browser, but you can extract bookmarks from system files. This method requires access to root folders and is suitable for users willing to work with ADB or root file manager.

Bookmarks are stored in the browser database along the way:

/data/data/com.android.browser/databases/browser2.db


or




/data/data/com.mi.globalbrowser/databases/mi_browser.db

To copy the file:

  1. Connect your smartphone to your PC and activate USB Debugging in Settings β†’ About Phone β†’ MIUI version (tap 7 times, then go back to Additional Settings β†’ For Developers).
  2. Use the command adb pull /data/data/com.android.browser/databases/browser2.db (replace the path with the one that is relevant to your browser version).
  3. Open the resulting file using SQLite Browser or similar software. Bookmarks are stored in the bookmarks table.
How to convert a database into a readable format?
Use the SQL query: SELECT title, url FROM bookmarks WHERE bookmark = 1; export the results to CSV, then convert to HTML through online services like ConvertCSV.

For users without root rights, the alternative is to back up the entire application through ADB Backup:

adb backup -f mi_browser_backup.ab com.mi.globalbrowser

The.ab file can be unpacked using Android Backup Extractor, but bookmarks will have to be manually extracted from XML.

⚠️ Attention: Manipulation of system files can cause a browser to crash.Before experimenting, back up your data via Settings β†’ System system β†’ Backup.

3. Manual transfer of bookmarks through cloud services

If syncing through Mi Account is not suitable and the technical methods are too complex, use cloud services like Google Drive or Dropbox.

  1. Open Mi Browser and go to the Bookmarks (star icon) section.
  2. Put a tab on any bookmark and hold your finger to activate the selection mode. Mark all the bookmarks you need.
  3. Click on the Share icon (usually in the top menu) and select Copy Links.
  4. Insert links into a text file (like Google Docs) and save it to the cloud.

For importation to a new device:

  • πŸ“‹ Open the saved file and copy the links.
  • 🌐 Insert them one by one in the address bar of the new browser and add them manually to bookmarks.
  • πŸ“ To speed up the process, use extensions like Bookmark Manager (available for Chrome and Firefox).

Create a folder in the cloud for backup

Check the number of bookmarks (up to 50 – manual transfer, more – it is better to use ADB)

Install a text editor (Google Docs, Notion, Evernote)

Prepare a new device for import-->

The downside is that it's laborious with lots of bookmarks, but it's versatile and works on all kinds of devices, including iPhones and PCs.

4. Transfer of bookmarks through third-party browsers

If you plan to upgrade from Mi Browser to Chrome, Firefox or Edge, you can use their built-in import tools. For example, Chrome can download bookmarks from the Internet. HTML-File, but how to get it from Mi Browser?

Option 1: Firefox (if installed on your device):

  1. Import bookmarks from Mi Browser to Firefox through the Settings β†’ Import and Backups menu.
  2. In Firefox, export bookmarks to HTML: Settings β†’ Bookmarks β†’ Bookmark Management β†’ Import and Backups β†’ Export bookmarks to HTML.
  3. Transfer the resulting file to a new device and import it to the target browser.

Option 2: via Xiaomi Cloud (if bookmarks are synchronized):

  • πŸ–₯️ Go to i.mi.com from PC and log in.
  • πŸ” Go to the Browser section. β†’ Bookmarks (if available in your area).
  • πŸ“„ Copy links manually or use page parsing extensions (e.g. Web Scraper for Chrome).

πŸ’‘

If the browser section is not available in Xiaomi Cloud, try changing your account region to China in your profile settings. This may reveal additional features, but some services will become unavailable.

5. Automation of transfer using scripts

For advanced users, it is possible to write a script in Python or Bash, which automatically extracts bookmarks from the Mi Browser database and converts them to the desired format.

  1. Get access to the file. mi_browser.db (see section 2).
  2. Use the sqlite3 library in Python to read data.
import sqlite3


conn = sqlite3.connect('mi_browser.db')




cursor = conn.cursor()




cursor.execute("SELECT title, url FROM bookmarks WHERE bookmark = 1")




bookmarks = cursor.fetchall()




with open('bookmarks.html', 'w') as f:




f.write('\n')




for title, url in bookmarks:




f.write(f'

{title}\n')




conn.close()

The finished bookmarks.html file can be imported into any browser. To run the script, you will need:

  • 🐍 Installed Python 3.x.
  • πŸ“‚ Database file mi_browser.db PC-only.
  • πŸ”§ Library sqlite3 (It is included in the standard Python supply).

⚠️ Note: The script may not work with new versions of the Mi Browser if the database structure has changed.Before mass perenosom, test it on 2-3 bookmarks.

6. Comparison of bookmark transfer methods

To choose the best way, evaluate your technical skills and goals:

MethodDifficultyTime.UniversalityTools required
Synchronization with Mi Account⭐2-5 minutesOnly Xiaomi.Xiaomi account
Manual transfer through the cloud⭐⭐10.30 minutesAny device.Google Drive, text editor
Exports through ADB⭐⭐⭐⭐20-40 minutesAny device.PC, ADB, SQLite Browser
Script in Python⭐⭐⭐⭐⭐30+ minuteAny device.PC, Python, SQL knowledge
Transferring over Firefox⭐⭐10-20 minutesBrowsers with HTML importFirefox on both devices

For most users, manual cloud transfer or synchronization via Mi Account is optimal. Tech-savvy users can try ADB or scripts, but these methods require caution.

πŸ’‘

If you need to migrate bookmarks to a non-Xiaomi device, the only working ways are manually transferring through the cloud or exporting a database with subsequent conversion.

Frequent mistakes and their solutions

When transferring bookmarks, users face typical problems:

  • πŸ”΄ "Bookmarks are not synced with Mi Account": Check if the option is enabled in your browser settings (Settings β†’ Sync. If yes, log out and log in again.
  • πŸ”΄ "File. browser2.db Not found": The path to the base may differ depending on the browser version. /data/data/com.mi.globalbrowser.mini/databases/.
  • πŸ”΄ "ADB Does not see the device: Make sure that the debugging is enabled USB And you have Xiaomi drivers installed on your PC. Try the adb device command to check the connection.
  • πŸ”΄ "Exported bookmarks open as text": Make sure the file is saved with the.html extension, not.txt. Use the notebook to edit the extension.

If none of the methods worked, try resetting your browser settings (Settings β†’ Applications β†’ Mi Browser β†’ Storage β†’ Clear Data) and repeating the procedure from scratch. This will remove local bookmarks, but can solve synchronization problems.

Can I transfer bookmarks from Xiaomi to iPhone?
Use the cloud storage method (Section 3) or export your bookmarks to HTML via Firefox (Section 4), then import them to Safari via Settings β†’ Safari β†’ Bookmark Import.
Why did the bookmarks disappear after the phone was reset, even though there was an entrance to the Mi Account?
Sync in Mi Browser only works for bookmarks added after logging in. Local bookmarks created before your account is linked are not stored in the cloud. To avoid losses, always back up through ADB or manually export before resetting.
How to transfer bookmarks to the new Xiaomi smartphone?
The easiest way is to log in to the same Mi Account on the new device and enable sync. If bookmarks do not appear, check: Both devices use the same browser version (Mi Browser or Mint Browser). Account settings (account.xiaomi.com) include the option to sync the browser. There is enough space on the new device to download data (synchronization can be interrupted if memory is not enough).
Can I restore the deleted bookmarks?
If you have recently deleted your bookmarks, check the Recycle Bin folder in your browser (if you have one in your version). Otherwise, try: Restore your phone backup via Settings β†’ System β†’ Backup. Use data recovery software (such as Dr.Fone or EaseUS MobiSaver), but the odds are low – browsers often overwrite data.
How to disable bookmark synchronization with Mi Account?
Go to Mi Browser, open profile β†’ Settings β†’ Sync and disable Bookmark slider. To completely remove bookmarks from the cloud, go to i.mi.com, select Browser β†’ Bookmarks and manually remove them.