视频加速减速控制

视频加速减速控制

【精选推荐】一款便捷的视频速度控制器,调整播放速率,增加和减少视频播放速度。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": {
      "128": "icons/icon.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/oxide.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/check-speed.js",
        "js/jquery.js",
        "js/matches.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    },
    {
      "all_frames": true,
      "js": [
        "js/industrial.js",
        "js/systematic.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "zh_CN",
  "description": "__MSG_application_description__",
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "128": "icons/icon.png"
  },
  "manifest_version": 3,
  "name": "__MSG_application_title__",
  "permissions": [
    "tabs",
    "webRequest",
    "downloads",
    "storage",
    "webNavigation",
    "alarms",
    "declarativeNetRequest",
    "scripting"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "2.2.1",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "/*"
      ]
    }
  ]
}