byTouch

byTouch

Enable you to change video progress by sliding on touch screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "byTouch",
  "version": "1.0.4",
  "description": "Enable you to change video progress by sliding on touch screen.",
  "icons": {
    "16": "icon2.png",
    "32": "icon2.png",
    "48": "icon2.png",
    "128": "icon2.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.bilibili.com/video/*"
      ],
      "js": [
        "source/bili_video.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.bilibili.com/bangumi/*"
      ],
      "js": [
        "source/bili_bangumi.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "source/ytb.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://www.youtube.com/*",
        "https://www.bilibili.com/*"
      ],
      "js": [
        "source/common.js"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}