YouTube Repeat

Repeats a YouTube video

Apa itu YouTube Repeat?

YouTube Repeat adalah ekstensi Chrome yang dikembangkan oleh Jimmy Fu, dan fitur utamanya adalah "Repeats a YouTube video".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Repeat

Unduh file ekstensi YouTube Repeat 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

                        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                    

Informasi Dasar Ekstensi

Nama YouTube Repeat YouTube Repeat
ID bijjfhgimphjklllkmbdapkfemdnhmpj
URL Resmi https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj
Deskripsi Repeats a YouTube video
Ukuran File 24.45 KB
Jumlah Instalasi 2,323
Versi Saat Ini 1.1
Terakhir Diperbarui 2015-10-09
Tanggal Publikasi 2015-10-08
Penilaian 4.37/5 Total 35 Penilaian
Pengembang Jimmy Fu
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}