Hangremote

This extension provides remote control for Google Hangouts

Hangremoteคืออะไร?

Hangremote เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marcelo Rossi และคุณลักษณะหลักของมันคือ "This extension provides remote control for Google Hangouts"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hangremote

ดาวน์โหลดไฟล์ส่วนขยาย Hangremote ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        UPDATES: 

may_2019:
works for Google Meet last version, multilingual support

New:

Now supports Google Meet, and also supports Google Hangouts.

Features:

    - Mute/(Un)mute microphone
    - Enable/Disable camera
    - Leave the hangouts call
    - (ON/OFF) mic/cam by default at start
    - Shortcuts

** Avoid mic/cam ON when starting a video-call  **

This extension enables you to (un)mute at hangouts video-call start.  

** Easily control to (un)mute and get (on/off) cam, from the extension icon, not worrying about finding the tab  **

    - Mute/Unmute microphone
    - Enable/Disable camera
    - Leave the hangouts call (closes the tab)

Or keyboard shortcuts (editable):

 - Ctrl+Shift+8 - Toggle Webcam
 - Ctrl+Shift+7 - Toggle Microphone

Please report any issue before rating if you have any, I will gladly help

Notes:

It does not support more than one tab/sessions of hangout/hangout of hangout/meet open at the same time.

Github:

- https://github.com/cheluskis/hangremote

Changelog:
    - 1.0.2: added Google Meet support
    - 1.0.1: now direct hangouts videocall works leaving hangouts chat open - minified code
    - 1.0.0: First version                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hangremote Hangremote
ID naabbdmohmekdgecllphidjiaobnekcc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hangremote/naabbdmohmekdgecllphidjiaobnekcc
คำอธิบาย This extension provides remote control for Google Hangouts
ขนาดไฟล์ 13.83 KB
จำนวนการติดตั้ง 5,480
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2019-05-28
วันที่เผยแพร่ 2019-05-27
คะแนน 4.73/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Marcelo Rossi
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cheluskis/hangremote
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hangremote",
    "description": "This extension provides remote control for Google Hangouts",
    "version": "1.0.3",
    "background": {
        "scripts": [
            "src\/js\/commands.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/hangouts*",
                "*:\/\/*.google.com\/call*",
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/js\/content.js",
                "src\/js\/elements.js"
            ]
        }
    ],
    "commands": {
        "toggleMic": {
            "suggested_key": {
                "default": "Ctrl+Shift+7"
            },
            "global": true,
            "description": "Toggle Microphone in Hangouts"
        },
        "toggleCam": {
            "suggested_key": {
                "default": "Ctrl+Shift+8"
            },
            "global": true,
            "description": "Toggle Webcam in Hangouts"
        }
    },
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_title": "Manage microphone and camera settings on google hangouts",
        "default_icon": {
            "19": "icons\/PNG\/hangouts2_19.png",
            "38": "icons\/PNG\/hangouts2_38.png"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}