ShiftApp: Extra features for WhatsApp

Check multiple WhatsApp images with shift-click

ShiftApp: Extra features for WhatsApp là gì?

ShiftApp: Extra features for WhatsApp là một tiện ích mở rộng Chrome được phát triển bởi mhabib, và tính năng chính của nó là "Check multiple WhatsApp images with shift-click".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ShiftApp: Extra features for WhatsApp

Tải xuống các tệp mở rộng ShiftApp: Extra features for WhatsApp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ShiftApp: Extra features for WhatsApp ShiftApp: Extra features for WhatsApp
ID cfkoohflgmbenjednimmnkngaiofeapf
URL Chính Thức https://chromewebstore.google.com/detail/shiftapp-extra-features-f/cfkoohflgmbenjednimmnkngaiofeapf
Mô tả Check multiple WhatsApp images with shift-click
Kích Thước Tệp 18.73 KB
Số Lần Cài Đặt 119
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-08-19
Ngày Phát Hành 2019-08-19
Đánh Giá 2.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển mhabib
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}