YouTube Repeat Button

YouTube Repeat Button

YouTube Repeat Button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.0.0",
  "default_locale": "en",
  "icons": {
    "16": "src/images/icons/icon16.png",
    "48": "src/images/icons/icon48.png",
    "128": "src/images/icons/icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "css": [
        "src/styles.css"
      ],
      "js": [
        "src/helpers/onElementHeightChange.js",
        "src/helpers/onRepeatClick.js",
        "src/helpers/removeTitle.js",
        "src/helpers/resetTitle.js",
        "src/helpers/createButton.js",
        "src/helpers/patcher.js",
        "src/content.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "permissions": [
    "tabs"
  ]
}