Hangouts toggle

This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.

ما هو Hangouts toggle؟

Hangouts toggle هو إضافة Chrome تم تطويرها بواسطة Wouter0100، والميزة الرئيسية لها هي "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".

تحميل ملف CRX للإضافة Hangouts toggle

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

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

                        This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.

You're able to select the shortcut from the Extensions page in Chrome, at the right bottom of the page.                    

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

الاسم Hangouts toggle Hangouts toggle
ID nidndogcoebjkeffddmaijgegbenafaa
عنوان URL الرسمي https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa
الوصف This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
حجم الملف 30.15 KB
عدد التثبيتات 74
النسخة الحالية 2.0
آخر تحديث 2016-01-31
تاريخ النشر 2016-01-31
تقييم 4.50/5 مجموع تقييمات 2
المطور Wouter0100
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/wouter0100/Hangouts-Toggle
عنوان صفحة المساعدة https://github.com/wouter0100/Hangouts-Toggle
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hangouts toggle",
    "version": "2.0",
    "description": "This extension allows you to (un)mute your microphone and enable\/disable your webcam with a single shortcut from everywhere.",
    "icons": {
        "128": "assets\/img\/icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "global": true,
            "description": "Toggle webcam and microphone in Hangouts"
        },
        "toggleMicrophone": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "global": true,
            "description": "Toggle webcam in Hangouts"
        },
        "toggleWebcam": {
            "suggested_key": {
                "default": "Ctrl+Shift+3"
            },
            "global": true,
            "description": "Toggle microphone in Hangouts"
        }
    },
    "content_scripts": [
        {
            "js": [
                "assets\/js\/update.js"
            ],
            "matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/talkgadget.google.com\/hangouts\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ],
        "persistent": false
    }
}