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 |
公式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" ] } |