waboxapp
waboxapp.com - Connect with your IM accounts
Wat is waboxapp?
waboxapp is een Chrome-extensie ontwikkeld door waboxapp, en de belangrijkste functie is "waboxapp.com - Connect with your IM accounts".
Extensie Screenshots
Download het CRX-bestand van de extensie waboxapp
Download waboxapp-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
waboxapp is an API for Instant Messaging that allows you to integrate your own accounts with your systems and solutions.
Basisinformatie over de Extensie
Naam | waboxapp |
ID | mgaecjklgnbkkdfnfpncgnogplnjjcdh |
Officiële URL | https://chromewebstore.google.com/detail/waboxapp/mgaecjklgnbkkdfnfpncgnogplnjjcdh |
Beschrijving | waboxapp.com - Connect with your IM accounts |
Bestandsgrootte | 23.77 KB |
Aantal Installaties | 15,386 |
Huidige Versie | 3.5.3 |
Laatst Bijgewerkt | 2022-02-28 |
Publicatiedatum | 2020-06-05 |
Beoordeling | 2.76/5 Totaal 42 Beoordelingen |
Ontwikkelaar | waboxapp |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.waboxapp.com |
URL van de Privacybeleid Pagina | https://www.waboxapp.com/terms |
Ondersteunde Talen | 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.*\/*" ] } |