Web for TikTok

Web for TikTok

Browse and download your favorite videos on TikTok. Upload videos, coment, follow your favorite tiktokers on your computer.

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_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "6.1",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsI42CIkh/E03UZtP5U3nqBRGnr3tA4N4nBq6NJ0Ci0KotPc1gl4NeeX/Jp36OBkV90dDGoWI11KnUoGSfshrHmuERtw3xmRJ2lSAahVxyCzdRlgrQy09iIVFkJj7Gqie1x7aGAFVC8WBo5FchAMQNIQSl4vdHK5tXVJtr2FBumjKYyeDL4dxG1qzisKMwctR3P5AHDVpgIEjQ6DKqZiUPrV0Id4CrbTuRNufqdDoofc8TLxPrcBqDpmaaRyntham5bE9OjC92tZZdp/WiehMrL/kYTxbN3E98KZ6giFVZVeNiUWHxFMh/lKbtxHviGBh5r++5oKqj6QODmuUOApVeQIDAQAB",
  "options_page": "options/index.html",
  "action": {
    "default_title": "__MSG_chrome_extension_name__",
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    }
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "ruleset.json"
      }
    ]
  },
  "permissions": [
    "system.display",
    "scripting",
    "activeTab",
    "notifications",
    "contextMenus",
    "unlimitedStorage",
    "storage",
    "downloads",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "*://*.tiktok.com/*",
    "*://*.tiktokcdn.com/*",
    "*://*.tiktokv.com/*",
    "*://*.wwevents.fun/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "js/safeResponse/purify.min.js",
        "js/toastr/toastr.min.js",
        "i18n.js",
        "js/i18n/i18n.js",
        "js/file-saver/FileSaver.min.js",
        "js/introjs/intro.min.js",
        "js/material-io/material-components-web.min.js",
        "js/jquery-menu/jquery.contextMenu.min.js",
        "js/jquery-menu/jquery.ui.position.min.js",
        "utils.js",
        "myScript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "js": [
        "myScriptTiktokBadge.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "js/*",
        "options/*",
        "css/*",
        "html/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}