ShiftApp: Extra features for WhatsApp

Check multiple WhatsApp images with shift-click

ShiftApp: Extra features for WhatsAppคืออะไร?

ShiftApp: Extra features for WhatsApp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mhabib และคุณลักษณะหลักของมันคือ "Check multiple WhatsApp images with shift-click"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ShiftApp: Extra features for WhatsApp

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

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

                        Tired of checking images one by one? 
This extension helps you check a range of images in WhatsApp Web using shift-click (OS like) instead of checking the images one by one.

How to use?
   - Check at least two images before using the range-selection with shift-click.
   - Except for the first image, the images must be selected by clicking on the image itself and not the check mark in the top left corner.

________________________________

I was tired of checking images one by one in order to download multiple images, and noticed that range-selection feature is missing from the official Whatsapp Web, so I decided to develop this extension and to learn some JavaScript. 

If you find any problems please contact me at [email protected]. In addition, I would love to receive feedback or suggestions for improvement.                    

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

ชื่อ ShiftApp: Extra features for WhatsApp ShiftApp: Extra features for WhatsApp
ID cfkoohflgmbenjednimmnkngaiofeapf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/shiftapp-extra-features-f/cfkoohflgmbenjednimmnkngaiofeapf
คำอธิบาย Check multiple WhatsApp images with shift-click
ขนาดไฟล์ 18.73 KB
จำนวนการติดตั้ง 119
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2019-08-19
วันที่เผยแพร่ 2019-08-19
คะแนน 2.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา mhabib
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShiftApp: Extra features for WhatsApp",
    "description": "Check multiple WhatsApp images with shift-click",
    "version": "1.0.2",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "web_accessible_resources": [
        "script.js"
    ]
}