Youtube Clip Playlist

Youtube Clip Playlist

This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "15.2.6",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://github.com/*",
    "https://gitlab.com/*",
    "https://*.githubusercontent.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "assets/icon/icon16.png",
      "32": "assets/icon/icon32.png",
      "48": "assets/icon/icon48.png",
      "128": "assets/icon/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/icon/icon16.png",
    "32": "assets/icon/icon32.png",
    "48": "assets/icon/icon48.png",
    "128": "assets/icon/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://drive.google.com/*",
        "https://youtube.googleapis.com/*",
        "https://*.sharepoint.com/*",
        "https://onedrive.live.com/*",
        "https://twitcasting.tv/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "contentScript.js"
      ],
      "css": [
        "contentScript.css"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://drive.google.com/*",
        "https://youtube.googleapis.com/*",
        "https://*.sharepoint.com/*",
        "https://onedrive.live.com/*",
        "https://twitcasting.tv/*"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "assets/assjs/ass.min.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.html",
        "contentScript_lyricHelper.html"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "https://drive.google.com/*",
        "https://youtube.googleapis.com/*",
        "https://*.sharepoint.com/*",
        "https://onedrive.live.com/*",
        "https://twitcasting.tv/*"
      ]
    }
  ]
}