ScrewMyCode.in: Pitch control for YouTube
Slow down and speed up videos directly on YouTube like you would on a turntable.
什么是ScrewMyCode.in: Pitch control for YouTube?
ScrewMyCode.in: Pitch control for YouTube是由Bamdad开发的Chrome扩展程序,该扩展的主要功能是“Slow down and speed up videos directly on YouTube like you would on a turntable.”。
扩展截图
下载ScrewMyCode.in: Pitch control for YouTube扩展crx文件
下载ScrewMyCode.in: Pitch control for YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
## 📖 Description
Slow down and speed up videos directly on YouTube like you would on a turntable.
### ⚙️ Use either
- Popup settings
- Embedded controls
### 📣 Share to
- Users of the extension with the dynamic YouTube URL
- Other users through the dedicated website ScrewMyCode.in 扩展基本信息
| 名称 | |
| ID | lnoedjelpkmhegefhhjljmggjdicnbaa |
| 官方URL | https://chromewebstore.google.com/detail/screwmycodein-pitch-contr/lnoedjelpkmhegefhhjljmggjdicnbaa |
| 简介 | Slow down and speed up videos directly on YouTube like you would on a turntable. |
| 文件大小 | 177 KB |
| 安装次数 | 377 |
| 当前版本 | 2.4.0 |
| 更新时间 | 2022-08-06 |
| 上架时间 | 2022-02-23 |
| 评分 | 4.33/5 共6次评分 |
| 开发者 | Bamdad |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/bamdadsabbagh/screwmycode-in--extension |
| 帮助页面URL | https://github.com/bamdadsabbagh/screwmycode-in--extension/issues |
| 隐私政策页面URL | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "2.4.0",
"name": "ScrewMyCode.in: Pitch control for YouTube",
"short_name": "ScrewMyCode.in",
"description": "Slow down and speed up videos directly on YouTube like you would on a turntable.",
"icons": {
"128": "assets\/icon-128.png"
},
"action": {
"default_icon": {
"128": "assets\/icon-128.png"
},
"default_title": "ScrewMyCode.in",
"default_popup": "popup\/index.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"scripts\/content.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"permissions": [
"storage",
"tabs"
]
} | |