LoopTube

Auto loop the YouTube video

Was ist LoopTube?

LoopTube ist eine Chrome-Erweiterung, die von vedha.viyash entwickelt wurde, und ihr Hauptmerkmal ist "Auto loop the YouTube video".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

LoopTube-Erweiterungs-CRX-Datei herunterladen

Laden Sie LoopTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name LoopTube LoopTube
ID faaokfideffddckilhbjniccnelnioid
Offizielle URL https://chromewebstore.google.com/detail/looptube/faaokfideffddckilhbjniccnelnioid
Beschreibung Auto loop the YouTube video
Dateigröße 10.51 KB
Installationsanzahl 75
Aktuelle Version 0.0.1
Letztes Update 2020-08-18
Veröffentlichungsdatum 2020-08-18
Entwickler vedha.viyash
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}