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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}