LoopTube

Auto loop the YouTube video

What is LoopTube?

LoopTube is a Chrome extension developed by vedha.viyash, and its main feature is "Auto loop the YouTube video".

Extension Screenshots

screenshot
screenshot
screenshot

Download LoopTube Extension CRX File

Download LoopTube 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

                        Auto loop the YouTube video when it ends. No more click replay buttons again!                    

Extension Basic Information

Name LoopTube LoopTube
ID faaokfideffddckilhbjniccnelnioid
Official URL https://chromewebstore.google.com/detail/looptube/faaokfideffddckilhbjniccnelnioid
Description Auto loop the YouTube video
File Size 10.51 KB
Installation Count 75
Current Version 0.0.1
Last Updated 2020-08-18
Publish Date 2020-08-18
Developer vedha.viyash
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LoopTube",
    "version": "0.0.1",
    "description": "Auto loop the YouTube video",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "youtube.png",
        "48": "youtube.png",
        "128": "youtube.png"
    },
    "browser_action": {
        "default_icon": "youtube.png",
        "default_title": "Turning this extension on will loop the YouTube video automatically"
    }
}