Bitrix Composite Notifier

Shows statistics and debugging information for the composite site.

Was ist Bitrix Composite Notifier?

Bitrix Composite Notifier ist eine Chrome-Erweiterung, die von Anton Gerasimyuk entwickelt wurde, und ihr Hauptmerkmal ist "Shows statistics and debugging information for the composite site.".

Erweiterungsscreenshots

screenshot
screenshot

Bitrix Composite Notifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bitrix Composite Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Bitrix Composite Notifier Bitrix Composite Notifier
ID bhjmmlcdfdcdloebidhnlgoabjpbfjbk
Offizielle URL https://chromewebstore.google.com/detail/bitrix-composite-notifier/bhjmmlcdfdcdloebidhnlgoabjpbfjbk
Beschreibung Shows statistics and debugging information for the composite site.
Dateigröße 26.3 KB
Installationsanzahl 5,751
Aktuelle Version 1.6
Letztes Update 2021-04-21
Veröffentlichungsdatum 2019-09-23
Bewertung 3.63/5 Insgesamt 27 Bewertungen
Entwickler Anton Gerasimyuk
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
}