Youtube Time Marks
Reads Youtube description and creates video time marks.
Apa itu Youtube Time Marks?
Youtube Time Marks adalah ekstensi Chrome yang dikembangkan oleh RepoGamesStudio, dan fitur utamanya adalah "Reads Youtube description and creates video time marks.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Youtube Time Marks
Unduh file ekstensi Youtube Time Marks 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
Usable mostly to long youtube interviews It reads description in the following format: 00:00:00 desc1 00:01:34 desc2 00:01:47 desc3 00:02:44 desc4 ... and creates time marks automatically.
Informasi Dasar Ekstensi
Nama | |
ID | pphlndhfdfilkemppecnknkefjoolibp |
URL Resmi | https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp |
Deskripsi | Reads Youtube description and creates video time marks. |
Ukuran File | 12.05 KB |
Jumlah Instalasi | 11 |
Versi Saat Ini | 0.0.3 |
Terakhir Diperbarui | 2018-06-30 |
Tanggal Publikasi | 2018-06-30 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | RepoGamesStudio |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.facebook.com/RepoGames/ |
URL Halaman Bantuan | https://www.facebook.com/RepoGames/ |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Time Marks", "version": "0.0.3", "description": "Reads Youtube description and creates video time marks.", "manifest_version": 2, "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/watch*" ], "js": [ "main.js" ], "run_at": "document_idle", "css": [ "styles.css" ] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |