Skip to content

netCrunch/LikeVault

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LikeVault

Chrome extension Firefox extension Manifest V3 Status License

LikeVault banner

LikeVault is a local-first browser extension for building a searchable archive of TikTok likes and favourites. It runs against the TikTok page you already have open, saves records in the extension's IndexedDB database, and gives you an option to either export the data, or use the built in archive browser, with the ability to search, filter and sort.

Contents

Why this exists

TikTok does not give you any way to search, filter, or sort the content that you liked or favourited. The only way is to endlessly scroll every time you try to find something.

Why this extension and not some other one? The most popular alternative - myfaveTT, is auto-downloading the tiktoks that it saves. There is no option to disable the downloading and only gather information. It also doesnt support Firefox.

LikeVault does everything locally. It reads the likes or favourites page, watches TikTok item-list responses already loaded by that tab, and saves normalized post records locally. When a record is missing some fields, the repair flow can open TikTok detail pages in a helper tab and fill in what it can.

It does not download the actual TikTok video files. The archive is metadata: post URLs, IDs, creator names, captions, cover URLs, upload fields, view labels, status fields, and timestamps.

Screenshots

Main page Settings
LikeVault main page LikeVault settings
Archive
LikeVault archive page

What it does

  • Crawls your TikTok Likes or Favourites page in Chrome or Firefox.
  • Captures records from visible page content and TikTok item-list responses loaded in that tab.
  • Stores archive records locally in IndexedDB.
  • Lets you pause, resume, stop, and tune crawl settings like scroll step and plateau threshold.
  • Repairs partial records by visiting TikTok detail pages in a helper tab.
  • Includes a full archive page with search, filters, sorting, paging, and card-size controls.
  • Imports and exports archive data as JSON or CSV.

How the workflow fits together

At a high level:

  1. Build and load the extension for Chrome or Firefox.
  2. Open your TikTok Likes or Favourites page in the same browser.
  3. Start a crawl from the LikeVault side panel or Firefox sidebar.
  4. Let the crawl scroll until it reaches a plateau, or stop it manually.
  5. Repair missing records if you want richer metadata.
  6. Search the archive, filter it, and export JSON or CSV when needed.

The extension uses your existing TikTok browser session. It does not ask you to log in through a separate LikeVault service.

flowchart LR
  A["Browser side panel or sidebar"] --> B["Content script on tiktok.com"]
  B --> C["Visible page records"]
  B --> D["TikTok item-list responses"]
  C --> E["Normalized archive records"]
  D --> E
  E --> F["Local IndexedDB storage"]
  F --> G["Archive search and filters"]
  F --> H["JSON or CSV export"]
  F --> I["Optional repair helper tab"]
Loading

Privacy and data handling

  • LikeVault is built around local browser storage.
  • Active archive records are stored in the extension's IndexedDB database.
  • Runtime crawl state and temporary values use extension local storage.
  • Export files are created only when you choose to export them.
  • It does not connect to any external server.
  • The privacy disclosure lives in PRIVACY.md.

Install for local use

Requirements

  • Chrome or Firefox
  • An active TikTok login in that browser
  • Node.js

Build the extension

node scripts/build-extension.js

The build script writes browser-specific unpacked extension folders to dist/chrome and dist/firefox.

Load in Chrome

  1. Open chrome://extensions.
  2. Enable Developer mode.
  3. Click Load unpacked.
  4. Select dist/chrome.

Chrome opens LikeVault through the extension side panel.

Load in Firefox

  1. Open about:debugging#/runtime/this-firefox.
  2. Click Load Temporary Add-on....
  3. Select dist/firefox/manifest.json.

Firefox opens LikeVault through the extension sidebar.

Project layout

assets/
  icons/        extension icons used by the generated browser builds
  readme/       README logo and public README assets
extension/
  archive/      full archive page for search, filters, import, export, and clearing
  lib/          shared browser API, IndexedDB, and normalization helpers
  manifests/    Chrome and Firefox manifest overrides
  sidepanel/    main crawl, repair, settings, and recent-results UI
  content_script.js
  manifest.base.json
  network_bridge.js
  service_worker.js
scripts/
  build-extension.js

dist/ is generated by the build script and is intentionally not tracked in git.

Development

Useful commands:

node scripts/build-extension.js

The build command merges extension/manifest.base.json with the target files in extension/manifests/, copies the extension source and icons, and writes final manifests into dist/chrome and dist/firefox.

There is no package install step in this repo at the moment. The build script uses Node's built-in modules.

License

This project is licensed under the GNU General Public License v3.0. See LICENSE for the full text.

About

Local-first browser extension for archiving, searching, filtering, and exporting TikTok likes and favourites.

Topics

Resources

Stars

Watchers

Forks

Contributors

Languages