YouTube Chapterize
Provides convenience functions to handle YouTube chapters.
什麼是YouTube Chapterize?
YouTube Chapterize是由blackway開發的Chrome擴展程式,該擴展的主要功能是“Provides convenience functions to handle YouTube chapters.”。
擴展截圖
下載YouTube Chapterize擴展crx文件
下載YouTube Chapterize擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Use this extension if you want to shuffle the order of chapters. If you toggle the shuffle button at the top of the chapter list, the play time will shift to a random chapter when one chapter has finished playing. Features - You can shuffle chapters in a video.
擴展基本資訊
名稱 | |
ID | pndbjffcoioeikhcfofoefnlbiiidclh |
官方網址 | https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh |
簡介 | Provides convenience functions to handle YouTube chapters. |
檔案大小 | 10.32 KB |
安裝次數 | 58 |
目前版本 | 2 |
更新時間 | 2021-11-24 |
上架時間 | 2021-11-23 |
評分 | 5.00/5 共 2 次評分 |
開發者 | blackway |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Chapterize", "description": "Provides convenience functions to handle YouTube chapters.", "version": "2", "manifest_version": 3, "permissions": [ "scripting" ], "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "inject.js" ] } ] } |