TikTok™ for Desktop

TikTok™ for Desktop

Experience TikTok™ for desktop like never before: a Chrome extension that brings exciting and creative content to your screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.2.1",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "128": "icon128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.css",
        "*.js",
        "frame.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "pages/back/link.js"
      ]
    },
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/index.css",
        "css/overlay.css"
      ],
      "js": [
        "overlay/overlay.js"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "tabs",
    "activeTab",
    "background",
    "scripting",
    "storage",
    "declarativeContent",
    "declarativeNetRequest",
    "system.display"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}