Bitrix Composite Notifier

Shows statistics and debugging information for the composite site.

Cos'è Bitrix Composite Notifier?

Bitrix Composite Notifier è un'estensione di Chrome sviluppata da Anton Gerasimyuk, e la sua funzione principale è "Shows statistics and debugging information for the composite site.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Bitrix Composite Notifier

Scarica i file di estensione Bitrix Composite Notifier 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

                        Bitrix Composite Site is a unique technology to enhance site performance that unites high-speed loading of static data and background preparation of dynamic data.

Composite technology can work on any site created on Bitrix Site Manager.

This extension notifies that a current site uses composite technology. It also shows statistics and some debugging information.                    

Informazioni di Base sull'Estensione

Nome Bitrix Composite Notifier Bitrix Composite Notifier
ID bhjmmlcdfdcdloebidhnlgoabjpbfjbk
URL Ufficiale https://chromewebstore.google.com/detail/bitrix-composite-notifier/bhjmmlcdfdcdloebidhnlgoabjpbfjbk
Descrizione Shows statistics and debugging information for the composite site.
Dimensione del File 26.3 KB
Conteggio Installazioni 5,751
Versione Corrente 1.6
Ultimo Aggiornamento 2021-04-21
Data di Pubblicazione 2019-09-23
Valutazione 3.63/5 Totale 27 Valutazioni
Sviluppatore Anton Gerasimyuk
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bitrix Composite Notifier",
    "description": "Shows statistics and debugging information for the composite site.",
    "version": "1.6",
    "author": "Anton Gerasimyuk",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "webRequest",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "composite_content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "images\/actions\/inactive-38.png",
        "default_title": "Composite Notifier",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "32"
}