McLaut Balance Checker

Simple extension that checks your balance on McLaut ISP

Cos'è McLaut Balance Checker?

McLaut Balance Checker è un'estensione di Chrome sviluppata da kolexandr, e la sua funzione principale è "Simple extension that checks your balance on McLaut ISP".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione McLaut Balance Checker

Scarica i file di estensione McLaut Balance Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Просте розширення для перевірки балансу на вашому рахунку в провайдера Інтернету МcLaut ISP (bill.mclaut.com). Розширення працює лише з цим провайдером на території України.

A simple extension to check your balance on the McLaut ISP account (bill.mclaut.com). Extension works with this provider in Ukraine.                    

Informazioni di Base sull'Estensione

Nome McLaut Balance Checker McLaut Balance Checker
ID kkmhcfedhaipelemiojpacapibommked
URL Ufficiale https://chromewebstore.google.com/detail/mclaut-balance-checker/kkmhcfedhaipelemiojpacapibommked
Descrizione Simple extension that checks your balance on McLaut ISP
Dimensione del File 1.87 MB
Conteggio Installazioni 57
Versione Corrente 2.4.0
Ultimo Aggiornamento 2024-03-03
Data di Pubblicazione 2016-03-16
Valutazione 4.83/5 Totale 6 Valutazioni
Sviluppatore kolexandr
Email [email protected]
Tipo di Pagamento free
Lingue Supportate uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "McLaut Balance Checker",
    "version": "2.4.0",
    "description": "Simple extension that checks your balance on McLaut ISP",
    "icons": {
        "128": "icons\/enabled-128px.png"
    },
    "offline_enabled": false,
    "background": {
        "service_worker": ".\/background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bill.mclaut.com\/*"
            ],
            "js": [
                ".\/background\/background.js"
            ]
        }
    ],
    "action": {
        "default_popup": ".\/popup\/popup.html",
        "permissions": [
            "nativeMessaging",
            "storage"
        ]
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' https:\/\/bill.mclaut.com;"
    },
    "permissions": [
        "alarms",
        "cookies",
        "nativeMessaging",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/bill.mclaut.com\/*"
    ]
}