Google Analytics Realtime Favicon
Replaces the Google Analytics favicon with a real time count of your site's visitors.
Google Analytics Realtime Favicon là gì?
Google Analytics Realtime Favicon là một tiện ích mở rộng Chrome được phát triển bởi brendonboshell, và tính năng chính của nó là "Replaces the Google Analytics favicon with a real time count of your site's visitors.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Analytics Realtime Favicon
Tải xuống các tệp mở rộng Google Analytics Realtime Favicon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hlgebiiefbpiamgdhoheckclfgbkklkh |
URL Chính Thức | https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh |
Mô tả | Replaces the Google Analytics favicon with a real time count of your site's visitors. |
Kích Thước Tệp | 13.85 KB |
Số Lần Cài Đặt | 111 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-05-23 |
Ngày Phát Hành | 2016-05-23 |
Nhà Phát Triển | brendonboshell |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |