Simple YouTube Loop

Simple, clean way to loop a YouTube video.

What is Simple YouTube Loop?

Simple YouTube Loop is a Chrome extension developed by mihelcic, and its main feature is "Simple, clean way to loop a YouTube video.".

Extension Screenshots

screenshot
screenshot

Download Simple YouTube Loop Extension CRX File

Download Simple YouTube Loop 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

                        This extension provides a simple YouTube loop button, on your HTML5 video controls bar. Nothing more.                    

Extension Basic Information

Name Simple YouTube Loop Simple YouTube Loop
ID bfhmecnhdehblbnadegfpbmmbbobkjff
Official URL https://chromewebstore.google.com/detail/simple-youtube-loop/bfhmecnhdehblbnadegfpbmmbbobkjff
Description Simple, clean way to loop a YouTube video.
File Size 39.23 KB
Installation Count 1,172
Current Version 0.6
Last Updated 2017-09-07
Publish Date 2017-09-07
Rating 4.58/5 Total 26 Ratings
Developer mihelcic
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple YouTube Loop",
    "short_name": "YouTube Loop",
    "description": "Simple, clean way to loop a YouTube video.",
    "version": "0.6",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/jq.js",
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "19": "images\/icon_19.png",
        "38": "images\/icon_38.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/bg.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon_19.png",
            "38": "images\/icon_38.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Simple YouTube Loop"
    },
    "permissions": [
        "tabs"
    ]
}