Video Chapters for YouTube
Navigate inside YouTube videos using chapters
Cos'è Video Chapters for YouTube?
Video Chapters for YouTube è un'estensione di Chrome sviluppata da https://videoken.com, e la sua funzione principale è "Navigate inside YouTube videos using chapters".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Video Chapters for YouTube
Scarica i file di estensione Video Chapters for YouTube in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Video Chapters for YouTube provides an easy to use time-stamped summary of all the topics (chapters) discussed inside a video. You can use topic summary to jump to any part of the video. Frequently asked questions (FAQ) 👉 How are these topics generated? There are two ways. 1) If topics are present in the video description or comments, they are picked from there. 2) They are generated by our AI algorithms which processes visual and spoken content. More information is here - https://videoken.com 👉 What information do you collect? We do not collect any personal data or usage information. 👉 I have a specific feedback for you to consider We love the feedback provided by our users. Please write to us at [email protected]
Informazioni di Base sull'Estensione
Nome | Video Chapters for YouTube |
ID | pfneegfmgamaabfmcokmjkllioiconnp |
URL Ufficiale | https://chromewebstore.google.com/detail/video-chapters-for-youtub/pfneegfmgamaabfmcokmjkllioiconnp |
Descrizione | Navigate inside YouTube videos using chapters |
Dimensione del File | 38.58 KB |
Conteggio Installazioni | 1,549 |
Versione Corrente | 2.2.0 |
Ultimo Aggiornamento | 2021-10-09 |
Data di Pubblicazione | 2020-05-06 |
Valutazione | 4.23/5 Totale 26 Valutazioni |
Sviluppatore | https://videoken.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://videoken.com/ |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Chapters for YouTube", "description": "Navigate inside YouTube videos using chapters", "version": "2.2.0", "minimum_chrome_version": "66.0", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png", "256": "icons\/256.png" }, "permissions": [ "storage" ], "browser_action": { "default_icon": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png" }, "default_popup": "browser_action.html" }, "content_scripts": [ { "matches": [ "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "js\/inject.js" ], "css": [ "css\/inject.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "js\/comments.js" ] } |