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是由brendonboshell開發的Chrome擴展程式,該擴展的主要功能是“Replaces the Google Analytics favicon with a real time count of your site's visitors.”。
擴展截圖
下載Google Analytics Realtime Favicon擴展crx文件
下載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 |
官方網址 | 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" ] } |