ShiftApp: Extra features for WhatsApp

Check multiple WhatsApp images with shift-click

ShiftApp: Extra features for WhatsApp क्या है?

ShiftApp: Extra features for WhatsApp mhabib द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check multiple WhatsApp images with shift-click"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ShiftApp: Extra features for WhatsApp एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}