Youtube Pause

Pause a vídeo on youtube

ما هو Youtube Pause؟

Youtube Pause هو إضافة Chrome تم تطويرها بواسطة Valter Barros، والميزة الرئيسية لها هي "Pause a vídeo on youtube".

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

screenshot

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

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

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

                        Is a extension to play and pause your youtube vídeos without need change the focus on browser                    

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

الاسم Youtube Pause Youtube Pause
ID hkkgahcplbiednmfhllhpgpemgenigdg
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-pause/hkkgahcplbiednmfhllhpgpemgenigdg
الوصف Pause a vídeo on youtube
حجم الملف 15.35 KB
عدد التثبيتات 17
النسخة الحالية 1.3.1
آخر تحديث 2019-04-01
تاريخ النشر 2019-03-31
تقييم 4.50/5 مجموع تقييمات 8
المطور Valter Barros
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/valterbarros/button-pause-youtube
عنوان صفحة المساعدة https://github.com/valterbarros/button-pause-youtube/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Pause",
    "version": "1.3.1",
    "manifest_version": 2,
    "description": "Pause a v\u00eddeo on youtube",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-pause-32.png",
        "default_title": "Pause youtube video",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "128": "icon-pause-128.png",
        "16": "icon-pause-16.png",
        "64": "icon-pause-64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/**"
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/www.youtube.com\/**"
    ],
    "commands": {
        "playPause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "global": true,
            "description": "Toggle play\/pause"
        },
        "playNext": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "global": true,
            "description": "Play next track"
        },
        "playPrev": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "global": true,
            "description": "Play previous track"
        }
    }
}