YouTube Chapters In Player
Shows YouTube chapters right in the player
Wat is YouTube Chapters In Player?
YouTube Chapters In Player is een Chrome-extensie ontwikkeld door ris58h, en de belangrijkste functie is "Shows YouTube chapters right in the player".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Chapters In Player
Download YouTube Chapters In Player-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | YouTube Chapters In Player |
ID | ikalbbakholajifblhnmbcffhmhnnohl |
Officiële URL | https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl |
Beschrijving | Shows YouTube chapters right in the player |
Bestandsgrootte | 14.15 KB |
Aantal Installaties | 955 |
Huidige Versie | 0.3.2 |
Laatst Bijgewerkt | 2023-11-27 |
Publicatiedatum | 2022-10-13 |
Beoordeling | 4.13/5 Totaal 8 Beoordelingen |
Ontwikkelaar | ris58h |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://ris58h.github.io/youtube-chapters-in-player/ |
Help Pagina-URL | https://github.com/ris58h/youtube-chapters-in-player/issues |
Ondersteunde Talen | 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" ] } ] } |