Mute Everything

Mutes everything by pausing all audio and video.

ما هو Mute Everything؟

Mute Everything هو إضافة Chrome تم تطويرها بواسطة Bozozo، والميزة الرئيسية لها هي "Mutes everything by pausing all audio and video.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Mute Everything

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

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

                        Mute Everything stops all audio playing in your browser with a single click. Enjoy the silence!

Do you ever find yourself scrolling through a bunch of tabs in search of that one video that's still playing? Simply press the Mute Everything button to pause it instantly.

* This extension works by pausing all audio and video elements
* Includes support for common music services (GrooveShark, Pandora, SoundCloud, and many more)
* Works excellently with YouTube videos and HTML5 media
* Plug-in objects can not be paused; they are inaccessible). Instead, such objects are temporarily removed, and can be individually restored with a single click.

This extension is far from perfect... please report any problems through the Feedback page. Please don't use reviews to report specific bugs, as I cannot respond to those.                    

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

الاسم Mute Everything Mute Everything
ID jcdccblikjhgpbjhfleoidoeildbcima
عنوان URL الرسمي https://chromewebstore.google.com/detail/mute-everything/jcdccblikjhgpbjhfleoidoeildbcima
الوصف Mutes everything by pausing all audio and video.
حجم الملف 42.14 KB
عدد التثبيتات 551
النسخة الحالية 0.1
آخر تحديث 2014-01-25
تاريخ النشر 2014-01-25
تقييم 1.88/5 مجموع تقييمات 34
المطور Bozozo
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute Everything",
    "version": "0.1",
    "author": "Arno van den Brink",
    "description": "Mutes everything by pausing all audio and video.",
    "offline_enabled": true,
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Mute Everything!"
    }
}