Media Controller

Control video/audio in the webpage with keyboard shortcuts

Media Controllerคืออะไร?

Media Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jsh9.github และคุณลักษณะหลักของมันคือ "Control video/audio in the webpage with keyboard shortcuts"

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

screenshot
screenshot
screenshot

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

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

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

                        A Chrome extension that lets you control video/audio in the webpage with keyboard shortcuts. Supported controls are: pause/play, volume up/down, seek backwards/forwards, speed up, slow down, and mute/unmute.                    

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

ชื่อ Media Controller Media Controller
ID eaecmocjfoffkdgcgmjfipbnfmakeane
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/media-controller/eaecmocjfoffkdgcgmjfipbnfmakeane
คำอธิบาย Control video/audio in the webpage with keyboard shortcuts
ขนาดไฟล์ 11.74 KB
จำนวนการติดตั้ง 108
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2023-06-22
วันที่เผยแพร่ 2023-05-02
ผู้พัฒนา jsh9.github
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jsh9/chrome-media-controller
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Media Controller",
    "description": "Control video\/audio in the webpage with keyboard shortcuts",
    "version": "0.0.2",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}