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.”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 ScrewMyCode.in: Pitch control for YouTube ScrewMyCode.in: Pitch control for YouTube
ID lnoedjelpkmhegefhhjljmggjdicnbaa
官方網址 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"
    ]
}