Bitrix Composite Notifier
Shows statistics and debugging information for the composite site.
Что такое Bitrix Composite Notifier?
Bitrix Composite Notifier - это расширение Chrome, разработанное Anton Gerasimyuk, и его основная функция - "Shows statistics and debugging information for the composite site.".
Снимки экрана расширения
Скачать файл CRX расширения Bitrix Composite Notifier
Скачайте файлы расширений 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. Основная информация о расширении
| Название | |
| 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"
} | |