waboxapp
waboxapp.com - Connect with your IM accounts
What is waboxapp?
waboxapp is a Chrome extension developed by waboxapp, and its main feature is "waboxapp.com - Connect with your IM accounts".
Extension Screenshots
Download waboxapp Extension CRX File
Download waboxapp extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
waboxapp is an API for Instant Messaging that allows you to integrate your own accounts with your systems and solutions.
Extension Basic Information
Name | waboxapp |
ID | mgaecjklgnbkkdfnfpncgnogplnjjcdh |
Official URL | https://chromewebstore.google.com/detail/waboxapp/mgaecjklgnbkkdfnfpncgnogplnjjcdh |
Description | waboxapp.com - Connect with your IM accounts |
File Size | 23.77 KB |
Installation Count | 15,386 |
Current Version | 3.5.3 |
Last Updated | 2022-02-28 |
Publish Date | 2020-06-05 |
Rating | 2.76/5 Total 42 Ratings |
Developer | waboxapp |
[email protected] | |
Payment Type | free |
Extension Website | https://www.waboxapp.com |
Privacy Policy Page URL | https://www.waboxapp.com/terms |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "waboxapp", "version": "3.5.3", "description": "waboxapp.com - Connect with your IM accounts", "browser_action": { "default_icon": "icon48_off.png", "default_popup": "settings_popup.html", "default_title": "waboxapp" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "config.js", "script.js" ], "run_at": "document_end" } ], "options_page": "settings.html", "web_accessible_resources": [ "client.js" ], "background": { "scripts": [ "config.js", "background.js" ], "persistent": true }, "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/*.whatsapp.*\/*", "https:\/\/*.whatsapp.*\/*" ] } |