YouTube Chapters In Player
Shows YouTube chapters right in the player
Qu'est-ce que YouTube Chapters In Player ?
YouTube Chapters In Player est une extension Chrome développée par ris58h, et sa fonction principale est "Shows YouTube chapters right in the player".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Chapters In Player
Téléchargez les fichiers d'extension YouTube Chapters In Player au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Just click on chapters button at the bottom of YouTube video player to show chapters list right in the player. Key features: - Shows chapters right in the player. - Works in Fullscreen and Theater modes. - Works for embedded videos. - Previous/Next chapter buttons. - Key Moments support. - Chapters from pinned comment. - Open Source https://github.com/ris58h/youtube-chapters-in-player
Informations de Base sur l'Extension
Nom | YouTube Chapters In Player |
ID | ikalbbakholajifblhnmbcffhmhnnohl |
URL Officiel | https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl |
Description | Shows YouTube chapters right in the player |
Taille du Fichier | 14.15 KB |
Nombre d'Installations | 955 |
Version Actuelle | 0.3.2 |
Dernière Mise à Jour | 2023-11-27 |
Date de Publication | 2022-10-13 |
Évaluation | 4.13/5 Total 8 Évaluations |
Développeur | ris58h |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://ris58h.github.io/youtube-chapters-in-player/ |
URL de la Page d'Aide | https://github.com/ris58h/youtube-chapters-in-player/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Chapters In Player", "description": "Shows YouTube chapters right in the player", "version": "0.3.2", "applications": { "gecko": { "id": "youtube-chapters-in-player@ris58h" } }, "permissions": [ "webRequest", "declarativeNetRequest", "declarativeNetRequestWithHostAccess", "declarativeNetRequestFeedback" ], "host_permissions": [ "https:\/\/www.youtube.com\/" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/www.youtube-nocookie.com\/embed\/*" ], "all_frames": true, "js": [ "content\/content.js" ], "css": [ "content\/content.css" ] } ] } |