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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |