Google Analytics Realtime Favicon
Replaces the Google Analytics favicon with a real time count of your site's visitors.
Wat is Google Analytics Realtime Favicon?
Google Analytics Realtime Favicon is een Chrome-extensie ontwikkeld door brendonboshell, en de belangrijkste functie is "Replaces the Google Analytics favicon with a real time count of your site's visitors.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Analytics Realtime Favicon
Download Google Analytics Realtime Favicon-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | hlgebiiefbpiamgdhoheckclfgbkklkh |
Officiële URL | https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh |
Beschrijving | Replaces the Google Analytics favicon with a real time count of your site's visitors. |
Bestandsgrootte | 13.85 KB |
Aantal Installaties | 111 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2016-05-23 |
Publicatiedatum | 2016-05-23 |
Ontwikkelaar | brendonboshell |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |