WhatsApp Web Shortcuts

Add keyboard shortcuts for WhatsApp Web!

WhatsApp Web Shortcutsคืออะไร?

WhatsApp Web Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Edmar Junior และคุณลักษณะหลักของมันคือ "Add keyboard shortcuts for WhatsApp Web!"

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

screenshot

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

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

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

                        Allows you to move on to the next chat, select a specific chat and add other shortcuts like archiving, deleting, pinning.

An update will soon arrive to customize these shortcuts of your choice.

Recommendation: use Whatsapp Web in single tab or as a Google Chrome app for the shortcut Ctrl + Tab to work.                    

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

ชื่อ WhatsApp Web Shortcuts WhatsApp Web Shortcuts
ID cchlfiddnacphaelpppojlgicakkgjcf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/whatsapp-web-shortcuts/cchlfiddnacphaelpppojlgicakkgjcf
คำอธิบาย Add keyboard shortcuts for WhatsApp Web!
ขนาดไฟล์ 32.3 KB
จำนวนการติดตั้ง 591
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2021-07-17
วันที่เผยแพร่ 2020-12-25
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Edmar Junior
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WhatsApp Web Shortcuts",
    "description": "Add keyboard shortcuts for WhatsApp Web!",
    "version": "1.4",
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "64": "assets\/icons\/64.png",
        "128": "assets\/icons\/128.png"
    },
    "permissions": [
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/16.png",
            "32": "assets\/icons\/32.png",
            "48": "assets\/icons\/48.png",
            "64": "assets\/icons\/64.png",
            "128": "assets\/icons\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}