Youtube Short Controller

Youtube Shorts Controller

Youtube Short Controllerคืออะไร?

Youtube Short Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://misa198.vercel.app และคุณลักษณะหลักของมันคือ "Youtube Shorts Controller"

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

screenshot

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

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

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

                        The extension will add to the Youtube Short player an overlay with video control functions including stop playing, fast forward or rewind the video for a period of time that can be set in the settings popup.                    

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

ชื่อ Youtube Short Controller Youtube Short Controller
ID fbkgbegeloakaicldjgkamfmpjhlmibi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi
คำอธิบาย Youtube Shorts Controller
ขนาดไฟล์ 24.95 KB
จำนวนการติดตั้ง 3,214
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2022-10-15
วันที่เผยแพร่ 2022-04-28
คะแนน 3.94/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา https://misa198.vercel.app
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/misa198/youtube-shorts-controller
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Youtube Shorts Controller",
    "version": "1.0.5",
    "author": "Thanh Vu",
    "homepage_url": "https:\/\/github.com\/thanhvu1982\/youtube-shorts-controller",
    "manifest_version": 3,
    "name": "Youtube Short Controller",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icons\/icon64.png",
        "default_popup": "popup.html"
    }
}