Google Analytics Realtime Favicon
Replaces the Google Analytics favicon with a real time count of your site's visitors.
Was ist Google Analytics Realtime Favicon?
Google Analytics Realtime Favicon ist eine Chrome-Erweiterung, die von brendonboshell entwickelt wurde, und ihr Hauptmerkmal ist "Replaces the Google Analytics favicon with a real time count of your site's visitors.".
Erweiterungsscreenshots
Google Analytics Realtime Favicon-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Analytics Realtime Favicon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | hlgebiiefbpiamgdhoheckclfgbkklkh |
Offizielle URL | https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh |
Beschreibung | Replaces the Google Analytics favicon with a real time count of your site's visitors. |
Dateigröße | 13.85 KB |
Installationsanzahl | 111 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-05-23 |
Veröffentlichungsdatum | 2016-05-23 |
Entwickler | brendonboshell |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |