waboxapp
waboxapp.com - Connect with your IM accounts
Hvad er waboxapp?
waboxapp er en Chrome-udvidelse udviklet af waboxapp, og dens hovedfunktion er "waboxapp.com - Connect with your IM accounts".
Udvidelsesskærmbilleder
Download waboxapp-udvidelses-CRX-fil
Download waboxapp-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
waboxapp is an API for Instant Messaging that allows you to integrate your own accounts with your systems and solutions. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mgaecjklgnbkkdfnfpncgnogplnjjcdh |
| Officiel URL | https://chromewebstore.google.com/detail/waboxapp/mgaecjklgnbkkdfnfpncgnogplnjjcdh |
| Beskrivelse | waboxapp.com - Connect with your IM accounts |
| Filstørrelse | 23.77 KB |
| Antal Installationer | 15,386 |
| Nuværende Version | 3.5.3 |
| Senest Opdateret | 2022-02-28 |
| Udgivelsesdato | 2020-06-05 |
| Bedømmelse | 2.76/5 Samlet 42 Bedømmelser |
| Udvikler | waboxapp |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://www.waboxapp.com |
| URL til Fortrolighedspolitik Side | https://www.waboxapp.com/terms |
| Understøttede Sprog | 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.*\/*"
]
} | |