Video Looper

Video Looper

Loop parts or multiple parts of any video on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Looper",
  "version": "0.0.4",
  "description": "Loop parts or multiple parts of any video on the web.",
  "permissions": [
    "activeTab",
    "storage",
    "notifications",
    "declarativeContent"
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-start.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "utils.js",
    "content-script.js",
    "content-start.js"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/VideoLooperImageLightRedBlue16.png",
      "48": "images/VideoLooperImageLightRedBlue48.png",
      "128": "images/VideoLooperImageLightRedBlue128.png"
    }
  },
  "icons": {
    "16": "images/VideoLooperImageLightRedBlue16.png",
    "48": "images/VideoLooperImageLightRedBlue48.png",
    "128": "images/VideoLooperImageLightRedBlue128.png"
  },
  "manifest_version": 2
}