Auto TikTok Scroller

Auto TikTok Scroller

Auto TikTok Scroller is a helpful tool to automatically scroll to the next TikTok when one ends.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto TikTok Scroller",
  "version": "4.1.3",
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./dist/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "./img/tiktokIcon16.png",
    "48": "./img/tiktokIcon48.png",
    "128": "./img/tiktokIcon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "injected_content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "./popup/popup.html",
    "default_icon": "./img/tiktokPopupIcon.png",
    "default_title": "Start scrolling!"
  },
  "description": "Auto TikTok Scroller is a helpful tool to automatically scroll to the next TikTok when one ends."
}