Simple YouTube Loop

Simple, clean way to loop a YouTube video.

Apa itu Simple YouTube Loop?

Simple YouTube Loop adalah ekstensi Chrome yang dikembangkan oleh mihelcic, dan fitur utamanya adalah "Simple, clean way to loop a YouTube video.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Simple YouTube Loop

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

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

Informasi Dasar Ekstensi

Nama Simple YouTube Loop Simple YouTube Loop
ID bfhmecnhdehblbnadegfpbmmbbobkjff
URL Resmi https://chromewebstore.google.com/detail/simple-youtube-loop/bfhmecnhdehblbnadegfpbmmbbobkjff
Deskripsi Simple, clean way to loop a YouTube video.
Ukuran File 39.23 KB
Jumlah Instalasi 1,172
Versi Saat Ini 0.6
Terakhir Diperbarui 2017-09-07
Tanggal Publikasi 2017-09-07
Penilaian 4.58/5 Total 26 Penilaian
Pengembang mihelcic
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}