Simple YouTube Loop

Simple, clean way to loop a YouTube video.

Qu'est-ce que Simple YouTube Loop ?

Simple YouTube Loop est une extension Chrome développée par mihelcic, et sa fonction principale est "Simple, clean way to loop a YouTube video.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Simple YouTube Loop

Téléchargez les fichiers d'extension Simple YouTube Loop 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

                        This extension provides a simple YouTube loop button, on your HTML5 video controls bar. Nothing more.                    

Informations de Base sur l'Extension

Nom Simple YouTube Loop Simple YouTube Loop
ID bfhmecnhdehblbnadegfpbmmbbobkjff
URL Officiel https://chromewebstore.google.com/detail/simple-youtube-loop/bfhmecnhdehblbnadegfpbmmbbobkjff
Description Simple, clean way to loop a YouTube video.
Taille du Fichier 39.23 KB
Nombre d'Installations 1,172
Version Actuelle 0.6
Dernière Mise à Jour 2017-09-07
Date de Publication 2017-09-07
Évaluation 4.58/5 Total 26 Évaluations
Développeur mihelcic
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": "Simple YouTube Loop",
    "short_name": "YouTube Loop",
    "description": "Simple, clean way to loop a YouTube video.",
    "version": "0.6",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/jq.js",
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "19": "images\/icon_19.png",
        "38": "images\/icon_38.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/bg.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon_19.png",
            "38": "images\/icon_38.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Simple YouTube Loop"
    },
    "permissions": [
        "tabs"
    ]
}