Custom YouTube Start Stop

This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…

Apa itu Custom YouTube Start Stop?

Custom YouTube Start Stop adalah ekstensi Chrome yang dikembangkan oleh Jonathan Li, dan fitur utamanya adalah "This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Custom YouTube Start Stop

Unduh file ekstensi Custom YouTube Start Stop 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 is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is especially useful for long youtube videos for podcasts or bedtime stories.                    

Informasi Dasar Ekstensi

Nama Custom YouTube Start Stop Custom YouTube Start Stop
ID lodhfkhkhdjjicigiinipdkcbbndpbme
URL Resmi https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme
Deskripsi This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…
Ukuran File 31.64 KB
Jumlah Instalasi 39
Versi Saat Ini 0.1.2
Terakhir Diperbarui 2021-05-11
Tanggal Publikasi 2021-05-11
Penilaian 3.00/5 Total 2 Penilaian
Pengembang Jonathan Li
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": "Custom YouTube Start Stop",
    "version": "0.1.2",
    "offline_enabled": true,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch?v=*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "16": "img\/icon16.png",
        "24": "img\/icon24.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "page_action": {
        "default_title": "Custom YouTube Start Stop",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}