Stop the Music

Pauses all playing YouTube videos.

ما هو Stop the Music؟

Stop the Music هو إضافة Chrome تم تطويرها بواسطة Roxton Labs، والميزة الرئيسية لها هي "Pauses all playing YouTube videos.".

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

screenshot

تحميل ملف CRX للإضافة Stop the Music

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

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

                        Pauses all playing YouTube videos, even if Chrome is in the background. 

* Press once to pause, press again to resume (will only play the most recent video). 
* Right click to set keyboard shortcut (supports media keys).                    

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

الاسم Stop the Music Stop the Music
ID mmkciobbhadaepjnfjllinlemhcmiihc
عنوان URL الرسمي https://chromewebstore.google.com/detail/stop-the-music/mmkciobbhadaepjnfjllinlemhcmiihc
الوصف Pauses all playing YouTube videos.
حجم الملف 10.84 KB
عدد التثبيتات 213
النسخة الحالية 1.0
آخر تحديث 2015-11-27
تاريخ النشر 2015-11-27
تقييم 5.00/5 مجموع تقييمات 7
المطور Roxton Labs
نوع الدفع free
موقع الإضافة http://www.roxtonlabs.blogspot.com
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop the Music",
    "description": "Pauses all playing YouTube videos.",
    "version": "1.0",
    "author": "Roxton Labs",
    "browser_action": {
        "default_icon": "stopIcon.png",
        "default_title": "Click to pause\/resume background YouTube Videos.\nRight-click to set keyboard shortcut."
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "stop-the-music": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Pauses\/resumes background YouTube videos.",
            "global": true
        }
    }
}