YouTube Repeat Button

YouTube Repeat Button.

What is YouTube Repeat Button?

YouTube Repeat Button is a Chrome extension developed by Vladislav Tupikin, and its main feature is "YouTube Repeat Button.".

Extension Screenshots

screenshot
screenshot

Download YouTube Repeat Button Extension CRX File

Download YouTube Repeat Button extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Google Chrome extension that embeds a video repeat button directly into the YouTube player                    

Extension Basic Information

Name YouTube Repeat Button YouTube Repeat Button
ID mpaeilkfigmkompknfmmnojgkbkahfdk
Official URL https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk
Description YouTube Repeat Button.
File Size 15.33 KB
Installation Count 394
Current Version 1.0.0
Last Updated 2021-01-05
Publish Date 2019-12-20
Rating 3.00/5 Total 4 Ratings
Developer Vladislav Tupikin
Email [email protected]
Payment Type free
Help Page URL https://github.com/MrRefactoring/youtube-repeat
Supported Languages en,ru
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"
    ]
}