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 - это расширение Chrome, разработанное Bamdad, и его основная функция - "Slow down and speed up videos directly on YouTube like you would on a turntable.".
Снимки экрана расширения
Скачать файл CRX расширения ScrewMyCode.in: Pitch control for YouTube
Скачайте файлы расширений 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"
]
} | |