YouTube Repeat

Repeats a YouTube video

Wat is YouTube Repeat?

YouTube Repeat is een Chrome-extensie ontwikkeld door Jimmy Fu, en de belangrijkste functie is "Repeats a YouTube video".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Repeat

Download YouTube Repeat-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

                        Minimalistic extension for replaying YouTube videos.

Instructions:
1) Open a YouTube video
2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused)
3) Press it to enable or disable                    

Basisinformatie over de Extensie

Naam YouTube Repeat YouTube Repeat
ID bijjfhgimphjklllkmbdapkfemdnhmpj
Officiële URL https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj
Beschrijving Repeats a YouTube video
Bestandsgrootte 24.45 KB
Aantal Installaties 2,323
Huidige Versie 1.1
Laatst Bijgewerkt 2015-10-09
Publicatiedatum 2015-10-08
Beoordeling 4.37/5 Totaal 35 Beoordelingen
Ontwikkelaar Jimmy Fu
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Repeat",
    "short_name": "Repeat",
    "description": "Repeats a YouTube video",
    "version": "1.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Repeat"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs"
    ]
}