Dark Mode for TikTok

Dark Mode for TikTok

Switch your TikTok site mode to dark or light with just one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "manifest_version": 3,
  "version": "3.0.3",
  "description": "__MSG_description__",
  "default_locale": "en",
  "action": {
    "default_icon": "img/enable.png",
    "default_title": "__MSG_short_name__"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "189": "img/enable.png"
  },
  "homepage_url": "https://dark-mode-tiktok.freespeedcheck.net/"
}