Repeat button autoreplay

Repeat button autoreplay

Repeat button autoreplay. Make videos play on repeat by pressing single button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "analytics.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "jquery-3.4.1.js",
        "inject.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com https://*.googleapis.com; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_app_desc__",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "version": "1.6.3",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}