YouTube Repeat

Repeats a YouTube video

What is YouTube Repeat?

YouTube Repeat is a Chrome extension developed by Jimmy Fu, and its main feature is "Repeats a YouTube video".

Extension Screenshots

screenshot

Download YouTube Repeat Extension CRX File

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

                        Minimalistic extension for replaying YouTube videos.

Instructions:
1) Open a YouTube video
2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused)
3) Press it to enable or disable                    

Extension Basic Information

Name YouTube Repeat YouTube Repeat
ID bijjfhgimphjklllkmbdapkfemdnhmpj
Official URL https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj
Description Repeats a YouTube video
File Size 24.45 KB
Installation Count 2,323
Current Version 1.1
Last Updated 2015-10-09
Publish Date 2015-10-08
Rating 4.37/5 Total 35 Ratings
Developer Jimmy Fu
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Repeat",
    "short_name": "Repeat",
    "description": "Repeats a YouTube video",
    "version": "1.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Repeat"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs"
    ]
}