Youtube Timeline

Youtube comments on a timeline

Apa itu Youtube Timeline?

Youtube Timeline adalah ekstensi Chrome yang dikembangkan oleh Awesome Extensions, dan fitur utamanya adalah "Youtube comments on a timeline".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Youtube Timeline

Unduh file ekstensi Youtube Timeline 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 app will show you comments with timestamp right above the timeline.

* Excellent performance
* Fetching up to 1000 comments per video
* Supports all player sizes and window resizing
* Supports fullscreen
* Popup menu with settings
* Loading indicator
* Turn on/off button in a player control-bar
* Seek video to certain comment by clicking on avatar

Does not gather any private/personal information
Does not check browsing history
Does not work in incognito mode

Has access only to youtube.com domain.

Safe. Stable. Open sourced.                    

Informasi Dasar Ekstensi

Nama Youtube Timeline Youtube Timeline
ID jjhifobmdjhlphmilfmemefedpkmhdnb
URL Resmi https://chromewebstore.google.com/detail/youtube-timeline/jjhifobmdjhlphmilfmemefedpkmhdnb
Deskripsi Youtube comments on a timeline
Ukuran File 156 KB
Jumlah Instalasi 72
Versi Saat Ini 1.0.4
Terakhir Diperbarui 2023-01-09
Tanggal Publikasi 2022-01-25
Penilaian 3.00/5 Total 2 Penilaian
Pengembang Awesome Extensions
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Timeline",
    "version": "1.0.4",
    "action": {
        "default_icon": {
            "16": "assets\/icons\/16.png",
            "32": "assets\/icons\/32.png",
            "48": "assets\/icons\/48.png",
            "128": "assets\/icons\/128.png"
        },
        "default_popup": "popup\/index.html",
        "default_title": "Youtube Timeline"
    },
    "description": "Youtube comments on a timeline",
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "author": "Ilya Zaytsev",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "content\/content-script.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "incognito": "not_allowed",
    "offline_enabled": false,
    "host_permissions": [
        "https:\/\/youtube.com\/"
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "short_name": "YT Timeline"
}