Youtube Repeat

Save your preference once and it will repeat the video for your favourite songs

Was ist Youtube Repeat?

Youtube Repeat ist eine Chrome-Erweiterung, die von mercury200Hg entwickelt wurde, und ihr Hauptmerkmal ist "Save your preference once and it will repeat the video for your favourite songs".

Erweiterungsscreenshots

screenshot

Youtube Repeat-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Repeat-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

                        Single repeat choice for all YouTube links.

- Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage.

Icons used are made by Freepick from www.flaticons.com                    

Grundlegende Informationen zur Erweiterung

Name Youtube Repeat Youtube Repeat
ID mbimaenpniemflhmhbahldkfppflbcjh
Offizielle URL https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh
Beschreibung Save your preference once and it will repeat the video for your favourite songs
Dateigröße 8.63 KB
Installationsanzahl 361
Aktuelle Version 1.0.0
Letztes Update 2017-03-12
Veröffentlichungsdatum 2017-03-12
Bewertung 4.33/5 Insgesamt 6 Bewertungen
Entwickler mercury200Hg
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Repeat",
    "browser_action": {
        "default_icon": "loop-arrow-32.png",
        "default_popup": "popup.html",
        "default_title": "Click repeat"
    },
    "description": "Save your preference once and it will repeat the video for your favourite songs",
    "icons": {
        "128": "loop-arrow-128.png",
        "32": "loop-arrow-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ],
    "version": "1.0.0"
}