YouTube Repeater

Repeats YouTube video after it ends.

What is YouTube Repeater?

YouTube Repeater is a Chrome extension developed by shogo, and its main feature is "Repeats YouTube video after it ends.".

Extension Screenshots

screenshot

Download YouTube Repeater Extension CRX File

Download YouTube Repeater 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

                        You can make your YouTube video repeat automatically right from the page.
- No external link
- No need for playlists
- Repeat infinitely with just 1 click

----- v.0.0.4 -----
Fixed the extension to work with the new YouTube design from fall 2018
----- v.0.0.3 -----
Fixed the icon to show inactive when on non-youtube pages.
----- v.0.0.2 -----
Fixed icon to show the repeat status when tabs are switched.                    

Extension Basic Information

Name YouTube Repeater YouTube Repeater
ID lgffcdbnficjmckoidgcmcajeadoekgi
Official URL https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi
Description Repeats YouTube video after it ends.
File Size 16.98 KB
Installation Count 423
Current Version 0.0.4
Last Updated 2019-03-18
Publish Date 2019-03-18
Rating 3.50/5 Total 4 Ratings
Developer shogo
Payment Type free
Extension Website http://shogo.eu/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Repeater",
    "description": "Repeats YouTube video after it ends.",
    "version": "0.0.4",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "webNavigation"
    ]
}