Google Analytics Realtime Favicon
Replaces the Google Analytics favicon with a real time count of your site's visitors.
Что такое Google Analytics Realtime Favicon?
Google Analytics Realtime Favicon - это расширение Chrome, разработанное brendonboshell, и его основная функция - "Replaces the Google Analytics favicon with a real time count of your site's visitors.".
Снимки экрана расширения
Скачать файл CRX расширения Google Analytics Realtime Favicon
Скачайте файлы расширений Google Analytics Realtime Favicon в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extensions adds the realtime user count from Google Analytics's Realtime tab into the favicon. This allows you to use Google Analytics as a pinned tab, but still get a live count of visitors.
Основная информация о расширении
Название | |
ID | hlgebiiefbpiamgdhoheckclfgbkklkh |
Официальный URL | https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh |
Описание | Replaces the Google Analytics favicon with a real time count of your site's visitors. |
Размер файла | 13.85 KB |
Количество установок | 111 |
Текущая Версия | 1.0 |
Последнее Обновление | 2016-05-23 |
Дата публикации | 2016-05-23 |
Разработчик | brendonboshell |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Analytics Realtime Favicon", "description": "Replaces the Google Analytics favicon with a real time count of your site's visitors.", "version": "1.0", "background": { "persistent": false, "scripts": [ "background.js" ] }, "icons": { "64": "icon64.png" }, "content_scripts": [ { "matches": [ "*:\/\/analytics.google.com\/*" ], "js": [ "tinycon.js", "replacefavicon.js" ] } ], "permissions": [ "*:\/\/analytics.google.com\/", "*:\/\/ssl.gstatic.com\/", "tabs" ] } |