Remove Youtube Hotkeys

Turn Off Youtube Hotkeys

ما هو Remove Youtube Hotkeys؟

Remove Youtube Hotkeys هو إضافة Chrome تم تطويرها بواسطة Brent Waters، والميزة الرئيسية لها هي "Turn Off Youtube Hotkeys".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Remove Youtube Hotkeys

قم بتنزيل ملفات الامتداد Remove Youtube Hotkeys بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This chrome extension disables youtube hotkeys whenever you are on youtube.com                    

معلومات أساسية عن التمديد

الاسم Remove Youtube Hotkeys Remove Youtube Hotkeys
ID ajabfhplebocnmdcejfleginmigkhjdj
عنوان URL الرسمي https://chromewebstore.google.com/detail/remove-youtube-hotkeys/ajabfhplebocnmdcejfleginmigkhjdj
الوصف Turn Off Youtube Hotkeys
حجم الملف 24.26 KB
عدد التثبيتات 1,187
النسخة الحالية 1.0
آخر تحديث 2019-03-15
تاريخ النشر 2019-03-15
تقييم 3.19/5 مجموع تقييمات 27
المطور Brent Waters
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/bcwaters/TurnOffYoutubeHotkeys
عنوان صفحة المساعدة https://github.com/bcwaters/TurnOffYoutubeHotkeys
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Youtube Hotkeys",
    "version": "1.0",
    "description": "Turn Off Youtube Hotkeys",
    "browser_action": [],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "\/background.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "\/chromeContent.js"
            ]
        }
    ]
}