YouTube Skip Chapter
Automatically skip chapters of YouTube videos you don't want to watch.
Vad är YouTube Skip Chapter?
YouTube Skip Chapter är en Chrome-tillägg utvecklad av skeetsdev, och dess huvudfunktion är "Automatically skip chapters of YouTube videos you don't want to watch.".
Tilläggsskärmbilder
Ladda ner YouTube Skip Chapter-förlängningens CRX-fil
Ladda ner YouTube Skip Chapter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | cjpkoghfjpkoapnmkppphegcmchghjdn |
| Officiell webbadress | https://chromewebstore.google.com/detail/youtube-skip-chapter/cjpkoghfjpkoapnmkppphegcmchghjdn |
| Beskrivning | Automatically skip chapters of YouTube videos you don't want to watch. |
| Filstorlek | 103 KB |
| Antal Installationer | 26 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2021-02-24 |
| Publiceringsdatum | 2020-11-30 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | skeetsdev |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |