Youtube Repeat

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

Qu'est-ce que Youtube Repeat ?

Youtube Repeat est une extension Chrome développée par mercury200Hg, et sa fonction principale est "Save your preference once and it will repeat the video for your favourite songs".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Youtube Repeat

Téléchargez les fichiers d'extension Youtube Repeat 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

                        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                    

Informations de Base sur l'Extension

Nom Youtube Repeat Youtube Repeat
ID mbimaenpniemflhmhbahldkfppflbcjh
URL Officiel https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh
Description Save your preference once and it will repeat the video for your favourite songs
Taille du Fichier 8.63 KB
Nombre d'Installations 361
Version Actuelle 1.0.0
Dernière Mise à Jour 2017-03-12
Date de Publication 2017-03-12
Évaluation 4.33/5 Total 6 Évaluations
Développeur mercury200Hg
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
}