Bitrix Composite Notifier

Shows statistics and debugging information for the composite site.

什么是Bitrix Composite Notifier?

Bitrix Composite Notifier是由Anton Gerasimyuk开发的Chrome扩展程序,该扩展的主要功能是“Shows statistics and debugging information for the composite site.”。

扩展截图

screenshot
screenshot

下载Bitrix Composite Notifier扩展crx文件

下载Bitrix Composite Notifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Bitrix Composite Notifier Bitrix Composite Notifier
ID bhjmmlcdfdcdloebidhnlgoabjpbfjbk
官方URL https://chromewebstore.google.com/detail/bitrix-composite-notifier/bhjmmlcdfdcdloebidhnlgoabjpbfjbk
简介 Shows statistics and debugging information for the composite site.
文件大小 26.3 KB
安装次数 5,751
当前版本 1.6
更新时间 2021-04-21
上架时间 2019-09-23
评分 3.63/5 共27次评分
开发者 Anton Gerasimyuk
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
}