WABuddy
WebExtension that adds extra functionalities to WhatsApp Web™️
WABuddyคืออะไร?
WABuddy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rafaismyname และคุณลักษณะหลักของมันคือ "WebExtension that adds extra functionalities to WhatsApp Web™️"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WABuddy
ดาวน์โหลดไฟล์ส่วนขยาย WABuddy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
BOOST your WhatsApp Web™️ with SUPER POWERS! 💬🔥 Enhance your Whatsapp Web™️ experience with this amazing features: 🤘🏼Hide List: Hide annoying contacts! Keep your chatlist enjoyable again! ⚡️Message Macros: Add quick message macros for a faster response! 👸🏼WYSINWYG: Enables an utility bar on top of your compose message's bar allowing you to easily format your text.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | kpakemodngdilkffhnfofaggnfgclgao |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/wabuddy/kpakemodngdilkffhnfofaggnfgclgao |
คำอธิบาย | WebExtension that adds extra functionalities to WhatsApp Web™️ |
ขนาดไฟล์ | 76.07 KB |
จำนวนการติดตั้ง | 236 |
เวอร์ชันปัจจุบัน | 0.2.3 |
อัปเดตครั้งล่าสุด | 2018-11-21 |
วันที่เผยแพร่ | 2018-11-21 |
คะแนน | 1.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | rafaismyname |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://rafaismyname.github.io/WhatsBuddy/ |
URL หน้าช่วยเหลือ | https://github.com/rafaismyname/WhatsBuddy/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://rafaismy.name |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WABuddy", "description": "WebExtension that adds extra functionalities to WhatsApp Web\u2122\ufe0f", "version": "0.2.3", "icons": { "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png", "512": "icons\/icon.png" }, "browser_action": [], "background": { "scripts": [ "background\/background.js" ], "persistent": false }, "options_ui": { "page": "options\/options.html", "chrome_style": false, "open_in_tab": true }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "chat\/chat.js", "list\/list.js" ], "css": [ "chat\/chat.css", "list\/list.css" ] } ], "permissions": [ "storage" ] } |