阿抖-抖音视频采集助手

阿抖-抖音视频采集助手

抖音网页版视频下载。页面视频下载,播放记录批量下载,我喜欢的视频一键下载,博主所有视频一键下载

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "阿抖-抖音视频采集助手",
  "version": "0.0.15",
  "description": "抖音网页版视频下载。页面视频下载,播放记录批量下载,我喜欢的视频一键下载,博主所有视频一键下载",
  "author": "story-writer",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "host_permissions": [
    "*://*.douyin.com/*",
    "*://*.xiaoshujiang.com/*"
  ],
  "action": {
    "default_title": "阿抖-抖音视频采集助手",
    "default_icon": "icons/icon48.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "permissions": [
    "downloads",
    "scripting",
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "*://*.douyin.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.xiaoshujiang.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.douyin.com/*"
      ],
      "css": [
        "content/index.css"
      ],
      "js": [
        "content/filesize.js",
        "content/index.js"
      ],
      "run_at": "document_start"
    }
  ]
}