Auto Scroll for Tiktok

Auto Scroll for Tiktok

Tự động cuộn video mới khi hết thời gian

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Scroll for Tiktok",
  "description": "Tự động cuộn video mới khi hết thời gian",
  "version": "1.3.1",
  "manifest_version": 3,
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "js": [
        "/js/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*.tiktok.com/*",
    "https://tiktok.com/*"
  ]
}