waboxapp
waboxapp.com - Connect with your IM accounts
Was ist waboxapp?
waboxapp ist eine Chrome-Erweiterung, die von waboxapp entwickelt wurde, und ihr Hauptmerkmal ist "waboxapp.com - Connect with your IM accounts".
Erweiterungsscreenshots
waboxapp-Erweiterungs-CRX-Datei herunterladen
Laden Sie waboxapp-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
waboxapp is an API for Instant Messaging that allows you to integrate your own accounts with your systems and solutions.
Grundlegende Informationen zur Erweiterung
Name | waboxapp |
ID | mgaecjklgnbkkdfnfpncgnogplnjjcdh |
Offizielle URL | https://chromewebstore.google.com/detail/waboxapp/mgaecjklgnbkkdfnfpncgnogplnjjcdh |
Beschreibung | waboxapp.com - Connect with your IM accounts |
Dateigröße | 23.77 KB |
Installationsanzahl | 15,386 |
Aktuelle Version | 3.5.3 |
Letztes Update | 2022-02-28 |
Veröffentlichungsdatum | 2020-06-05 |
Bewertung | 2.76/5 Insgesamt 42 Bewertungen |
Entwickler | waboxapp |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.waboxapp.com |
URL der Datenschutzrichtlinien-Seite | https://www.waboxapp.com/terms |
Unterstützte Sprachen | 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.*\/*" ] } |