Video Play Speed Controller

Smoothly slide to adjust video playback speed

Video Play Speed Controllerคืออะไร?

Video Play Speed Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mel Bro และคุณลักษณะหลักของมันคือ "Smoothly slide to adjust video playback speed"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Play Speed Controller

ดาวน์โหลดไฟล์ส่วนขยาย Video Play Speed Controller ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        [Video tutorial]
https://twitter.com/WWG1WWG/status/1208024045549060096

[Purpose]
Now we can only watch live videos of Miles Kwok (Guo Wengui) 😎 on Livestream which interestingly does not provide YouTube-like playback speed adjustment 🙄. For me, a [996](https://github.com/996icu/996.ICU/blob/master/README.md) programmer, 2x playback speed is a must as I don't have much time 😔.

[Features]
* Up to 10x playback speed (useful to skim the ADs 😉).
* Support all the websites including Livestream and YouTube.
* Support adjustments of all the videos on the same page (seems useless 🤣).

✊✊✊ Everything is just beginning 🙏🏻🙏🏻🙏🏻                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Video Play Speed Controller Video Play Speed Controller
ID oeeeoehjmbecilllolfoikdabhapgoac
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/video-play-speed-controll/oeeeoehjmbecilllolfoikdabhapgoac
คำอธิบาย Smoothly slide to adjust video playback speed
ขนาดไฟล์ 144 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2020-03-07
วันที่เผยแพร่ 2020-03-07
คะแนน 4.32/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา Mel Bro
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Pangu2020together/video-play-speed-extension
URL หน้านโยบายความเป็นส่วนตัว https://github.com/Pangu2020together/video-play-speed-extension
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "homepage_url": "https:\/\/github.com\/Pangu2020together\/video-play-speed-extension",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        ""
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/16.png",
            "19": "icons\/19.png",
            "38": "icons\/38.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'  https:\/\/ssl.google-analytics.com; object-src 'self'",
    "version": "1.1.0"
}