Playback Time Calculator | YouTube, Udemy
Calculate time by playback speed of video and playlist.
什么是Playback Time Calculator | YouTube, Udemy?
Playback Time Calculator | YouTube, Udemy是由heesangbb开发的Chrome扩展程序,该扩展的主要功能是“Calculate time by playback speed of video and playlist.”。
扩展截图
下载Playback Time Calculator | YouTube, Udemy扩展crx文件
下载Playback Time Calculator | YouTube, Udemy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension displays time by playback speed of videos and playlists.
Features:
Displays the time by playback speed of video.
Displays the total playing time of the playlist(by playback speed).
How to use:
⏱: Time is displayed by playback speed when you mouse over it.
Caution:
If there are more than 100 videos in the playlist, scroll down and it will be counted again when loading is complete. - youtube 扩展基本信息
| 名称 | |
| ID | kgjhahmomjhljmdaifmfepffdeldmpmg |
| 官方URL | https://chromewebstore.google.com/detail/playback-time-calculator/kgjhahmomjhljmdaifmfepffdeldmpmg |
| 简介 | Calculate time by playback speed of video and playlist. |
| 文件大小 | 13.22 KB |
| 安装次数 | 138 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2022-08-26 |
| 上架时间 | 2022-08-01 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | heesangbb |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/heesangbb/playback-time-calculator-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Playback Time Calculator | YouTube, Udemy",
"description": "Calculate time by playback speed of video and playlist.",
"version": "1.0.1",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.udemy.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
],
"icons": {
"128": "\/assets\/icon_128.png"
}
} | |