WhatsApp Web Shortcuts
Add keyboard shortcuts for WhatsApp Web!
什么是WhatsApp Web Shortcuts?
WhatsApp Web Shortcuts是由Edmar Junior开发的Chrome扩展程序,该扩展的主要功能是“Add keyboard shortcuts for WhatsApp Web!”。
扩展截图
下载WhatsApp Web Shortcuts扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |