Youtube Repeat

Save your preference once and it will repeat the video for your favourite songs

Apa itu Youtube Repeat?

Youtube Repeat adalah ekstensi Chrome yang dikembangkan oleh mercury200Hg, dan fitur utamanya adalah "Save your preference once and it will repeat the video for your favourite songs".

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

                        Single repeat choice for all YouTube links.

- Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage.

Icons used are made by Freepick from www.flaticons.com                    

Informasi Dasar Ekstensi

Nama Youtube Repeat Youtube Repeat
ID mbimaenpniemflhmhbahldkfppflbcjh
URL Resmi https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh
Deskripsi Save your preference once and it will repeat the video for your favourite songs
Ukuran File 8.63 KB
Jumlah Instalasi 361
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2017-03-12
Tanggal Publikasi 2017-03-12
Penilaian 4.33/5 Total 6 Penilaian
Pengembang mercury200Hg
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Repeat",
    "browser_action": {
        "default_icon": "loop-arrow-32.png",
        "default_popup": "popup.html",
        "default_title": "Click repeat"
    },
    "description": "Save your preference once and it will repeat the video for your favourite songs",
    "icons": {
        "128": "loop-arrow-128.png",
        "32": "loop-arrow-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ],
    "version": "1.0.0"
}