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 |
Eメール | [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" ] } |