YouTube Repeater

Repeats YouTube video after it ends.

Qu'est-ce que YouTube Repeater ?

YouTube Repeater est une extension Chrome développée par shogo, et sa fonction principale est "Repeats YouTube video after it ends.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Repeater

Téléchargez les fichiers d'extension YouTube Repeater au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        You can make your YouTube video repeat automatically right from the page.
- No external link
- No need for playlists
- Repeat infinitely with just 1 click

----- v.0.0.4 -----
Fixed the extension to work with the new YouTube design from fall 2018
----- v.0.0.3 -----
Fixed the icon to show inactive when on non-youtube pages.
----- v.0.0.2 -----
Fixed icon to show the repeat status when tabs are switched.                    

Informations de Base sur l'Extension

Nom YouTube Repeater YouTube Repeater
ID lgffcdbnficjmckoidgcmcajeadoekgi
URL Officiel https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi
Description Repeats YouTube video after it ends.
Taille du Fichier 16.98 KB
Nombre d'Installations 423
Version Actuelle 0.0.4
Dernière Mise à Jour 2019-03-18
Date de Publication 2019-03-18
Évaluation 3.50/5 Total 4 Évaluations
Développeur shogo
Type de Paiement free
Site Web de l'Extension http://shogo.eu/
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Repeater",
    "description": "Repeats YouTube video after it ends.",
    "version": "0.0.4",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "webNavigation"
    ]
}