Sort for TikTok Videos by Viewed or Likes

Sort for TikTok Videos by Viewed or Likes

Sort TikTok videos by most viewed, likes, comments, oldest, newest and Sort accounts by followers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extShortDesc__",
  "host_permissions": [
    "*://*.tiktok.com/*"
  ],
  "icons": {
    "128": "logo.png"
  },
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "permissions": [
    "webRequest",
    "storage"
  ],
  "version": "1.0.0.0"
}