YouTube Skip Chapter
Automatically skip chapters of YouTube videos you don't want to watch.
Qu'est-ce que YouTube Skip Chapter ?
YouTube Skip Chapter est une extension Chrome développée par skeetsdev, et sa fonction principale est "Automatically skip chapters of YouTube videos you don't want to watch.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Skip Chapter
Téléchargez les fichiers d'extension YouTube Skip Chapter 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
Have you ever had a YouTube "mix" video that you really enjoy, except for just 2 or 3 songs in the middle? This extension allows you to skip just what you want to automatically by defining "skip words". If these words are found in a YouTube video's chapter title, that chapter will be skipped automatically. GitHub: https://github.com/skeets23/YouTube-Skip-Chapter-Chrome-Ext
Informations de Base sur l'Extension
Nom | YouTube Skip Chapter |
ID | cjpkoghfjpkoapnmkppphegcmchghjdn |
URL Officiel | https://chromewebstore.google.com/detail/youtube-skip-chapter/cjpkoghfjpkoapnmkppphegcmchghjdn |
Description | Automatically skip chapters of YouTube videos you don't want to watch. |
Taille du Fichier | 103 KB |
Nombre d'Installations | 26 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-02-24 |
Date de Publication | 2020-11-30 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | skeetsdev |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Skip Chapter", "description": "Automatically skip chapters of YouTube videos you don't want to watch.", "version": "1.0", "browser_action": { "default_icon": "youtube_skip_chapter.png", "default_title": "Click here to edit skip words", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "*:\/\/*.youtube.com\/watch*", "storage" ] } |