AutoMute

Automatically mutes each new tab the instant it is opened.

ما هو AutoMute؟

AutoMute هو إضافة Chrome تم تطويرها بواسطة danbhentschel، والميزة الرئيسية لها هي "Automatically mutes each new tab the instant it is opened.".

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

screenshot

تحميل ملف CRX للإضافة AutoMute

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

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

                        Are you getting tired of obnoxious ads blaring sound while you're browsing? AutoMute automatically mutes every tab opened in your browser, effectively allowing you to opt-in to hear audio in a web page, instead of forcing you to opt-out.                    

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

الاسم AutoMute AutoMute
ID kjcdcbhfpjkcjinohfaaihpcmpnpmpie
عنوان URL الرسمي https://chromewebstore.google.com/detail/automute/kjcdcbhfpjkcjinohfaaihpcmpnpmpie
الوصف Automatically mutes each new tab the instant it is opened.
حجم الملف 72.51 KB
عدد التثبيتات 11,057
النسخة الحالية 2.1.1
آخر تحديث 2017-04-10
تاريخ النشر 2017-04-10
تقييم 4.30/5 مجموع تقييمات 92
المطور danbhentschel
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoMute",
    "description": "Automatically mutes each new tab the instant it is opened.",
    "version": "2.1.1",
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "Speaker_19.png",
            "38": "Speaker_38.png"
        },
        "default_title": "AutoMute",
        "default_popup": "browserAction.html"
    },
    "commands": {
        "mute-all": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Mute all tabs"
        },
        "mute-tab": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            },
            "description": "Mute current tab"
        },
        "mute-other": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Mute other tabs"
        }
    },
    "icons": {
        "16": "Speaker_16.png",
        "48": "Speaker_48.png",
        "128": "Speaker_128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}