Simple YouTube Loop

Simple, clean way to loop a YouTube video.

Wat is Simple YouTube Loop?

Simple YouTube Loop is een Chrome-extensie ontwikkeld door mihelcic, en de belangrijkste functie is "Simple, clean way to loop a YouTube video.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Simple YouTube Loop

Download Simple YouTube Loop-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Simple YouTube Loop Simple YouTube Loop
ID bfhmecnhdehblbnadegfpbmmbbobkjff
Officiële URL https://chromewebstore.google.com/detail/simple-youtube-loop/bfhmecnhdehblbnadegfpbmmbbobkjff
Beschrijving Simple, clean way to loop a YouTube video.
Bestandsgrootte 39.23 KB
Aantal Installaties 1,172
Huidige Versie 0.6
Laatst Bijgewerkt 2017-09-07
Publicatiedatum 2017-09-07
Beoordeling 4.58/5 Totaal 26 Beoordelingen
Ontwikkelaar mihelcic
Betalingswijze free
Ondersteunde Talen 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"
    ]
}