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 |
官方網址 | 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" ] } |