Google Analytics Realtime Favicon
Replaces the Google Analytics favicon with a real time count of your site's visitors.
Hvad er Google Analytics Realtime Favicon?
Google Analytics Realtime Favicon er en Chrome-udvidelse udviklet af brendonboshell, og dens hovedfunktion er "Replaces the Google Analytics favicon with a real time count of your site's visitors.".
Udvidelsesskærmbilleder
Download Google Analytics Realtime Favicon-udvidelses-CRX-fil
Download Google Analytics Realtime Favicon-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | hlgebiiefbpiamgdhoheckclfgbkklkh |
Officiel URL | https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh |
Beskrivelse | Replaces the Google Analytics favicon with a real time count of your site's visitors. |
Filstørrelse | 13.85 KB |
Antal Installationer | 111 |
Nuværende Version | 1.0 |
Senest Opdateret | 2016-05-23 |
Udgivelsesdato | 2016-05-23 |
Udvikler | brendonboshell |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |