waboxapp

waboxapp.com - Connect with your IM accounts

Vad är waboxapp?

waboxapp är en Chrome-tillägg utvecklad av waboxapp, och dess huvudfunktion är "waboxapp.com - Connect with your IM accounts".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner waboxapp-förlängningens CRX-fil

Ladda ner waboxapp-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        waboxapp is an API for Instant Messaging that allows you to integrate your own accounts with your systems and solutions.                    

Grundläggande Information om Tillägg

Namn waboxapp waboxapp
ID mgaecjklgnbkkdfnfpncgnogplnjjcdh
Officiell webbadress https://chromewebstore.google.com/detail/waboxapp/mgaecjklgnbkkdfnfpncgnogplnjjcdh
Beskrivning waboxapp.com - Connect with your IM accounts
Filstorlek 23.77 KB
Antal Installationer 15,386
Aktuell Version 3.5.3
Senast Uppdaterad 2022-02-28
Publiceringsdatum 2020-06-05
Betyg 2.76/5 Totalt 42 Betyg
Utvecklare waboxapp
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.waboxapp.com
URL till Sekretesspolicy Sidan https://www.waboxapp.com/terms
Stödda Språk 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.*\/*"
    ]
}