YouTube Skip Chapter
Automatically skip chapters of YouTube videos you don't want to watch.
什么是YouTube Skip Chapter?
YouTube Skip Chapter是由skeetsdev开发的Chrome扩展程序,该扩展的主要功能是“Automatically skip chapters of YouTube videos you don't want to watch.”。
扩展截图
下载YouTube Skip Chapter扩展crx文件
下载YouTube Skip Chapter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | YouTube Skip Chapter |
ID | cjpkoghfjpkoapnmkppphegcmchghjdn |
官方URL | https://chromewebstore.google.com/detail/youtube-skip-chapter/cjpkoghfjpkoapnmkppphegcmchghjdn |
简介 | Automatically skip chapters of YouTube videos you don't want to watch. |
文件大小 | 103 KB |
安装次数 | 26 |
当前版本 | 1.0 |
更新时间 | 2021-02-24 |
上架时间 | 2020-11-30 |
评分 | 5.00/5 共3次评分 |
开发者 | skeetsdev |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |