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
官方網址 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"
}