YouTube Repeater

Repeats YouTube video after it ends.

Apa itu YouTube Repeater?

YouTube Repeater adalah ekstensi Chrome yang dikembangkan oleh shogo, dan fitur utamanya adalah "Repeats YouTube video after it ends.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Repeater

Unduh file ekstensi YouTube Repeater dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama YouTube Repeater YouTube Repeater
ID lgffcdbnficjmckoidgcmcajeadoekgi
URL Resmi https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi
Deskripsi Repeats YouTube video after it ends.
Ukuran File 16.98 KB
Jumlah Instalasi 423
Versi Saat Ini 0.0.4
Terakhir Diperbarui 2019-03-18
Tanggal Publikasi 2019-03-18
Penilaian 3.50/5 Total 4 Penilaian
Pengembang shogo
Tipe Pembayaran free
Situs Ekstensi http://shogo.eu/
Bahasa yang Didukung 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"
    ]
}