Youtube Plus

Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…

Youtube Plusคืออะไร?

Youtube Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TalentedB และคุณลักษณะหลักของมันคือ "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Plus

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

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

                        Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and comprehend content at your own pace with ease. Our extension also comes equipped with an ad-skipping feature for YouTube videos, ensuring an uninterrupted viewing experience. Additionally, our extension includes a volume changer feature that allows you to adjust the volume of any video playing, even above or below 100%. No more frustration with slow videos, annoying ads, or limited volume control. Download our extension today and elevate your video playback experience to the next level.                    

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

ชื่อ Youtube Plus Youtube Plus
ID cedpplfbcjacmflnlglnebkglbibkegk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk
คำอธิบาย Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
ขนาดไฟล์ 70.09 KB
จำนวนการติดตั้ง 60
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-02-25
วันที่เผยแพร่ 2023-02-21
คะแนน 5.00/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา TalentedB
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/TalentedB/Youtube-Plus
URL หน้าช่วยเหลือ https://github.com/TalentedB/Youtube-Plus
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Plus",
    "version": "1.0",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_title": "Youtube Plus",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "adskipper.js"
            ],
            "run_at": "document_start",
            "world": "MAIN"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "volumeInject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ]
}