waboxapp
waboxapp.com - Connect with your IM accounts
Qu'est-ce que waboxapp ?
waboxapp est une extension Chrome développée par waboxapp, et sa fonction principale est "waboxapp.com - Connect with your IM accounts".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension waboxapp
Téléchargez les fichiers d'extension waboxapp au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
waboxapp is an API for Instant Messaging that allows you to integrate your own accounts with your systems and solutions.
Informations de Base sur l'Extension
Nom | waboxapp |
ID | mgaecjklgnbkkdfnfpncgnogplnjjcdh |
URL Officiel | https://chromewebstore.google.com/detail/waboxapp/mgaecjklgnbkkdfnfpncgnogplnjjcdh |
Description | waboxapp.com - Connect with your IM accounts |
Taille du Fichier | 23.77 KB |
Nombre d'Installations | 15,386 |
Version Actuelle | 3.5.3 |
Dernière Mise à Jour | 2022-02-28 |
Date de Publication | 2020-06-05 |
Évaluation | 2.76/5 Total 42 Évaluations |
Développeur | waboxapp |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.waboxapp.com |
URL de la Page de Politique de Confidentialité | https://www.waboxapp.com/terms |
Langues Prises en Charge | 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.*\/*" ] } |