ShiftApp: Extra features for WhatsApp
Check multiple WhatsApp images with shift-click
什麼是ShiftApp: Extra features for WhatsApp?
ShiftApp: Extra features for WhatsApp是由mhabib開發的Chrome擴展程式,該擴展的主要功能是“Check multiple WhatsApp images with shift-click”。
擴展截圖
下載ShiftApp: Extra features for WhatsApp擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | cfkoohflgmbenjednimmnkngaiofeapf |
| 官方網址 | 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"
]
} | |