Google Analytics Realtime Favicon
Replaces the Google Analytics favicon with a real time count of your site's visitors.
Vad är Google Analytics Realtime Favicon?
Google Analytics Realtime Favicon är en Chrome-tillägg utvecklad av brendonboshell, och dess huvudfunktion är "Replaces the Google Analytics favicon with a real time count of your site's visitors.".
Tilläggsskärmbilder
Ladda ner Google Analytics Realtime Favicon-förlängningens CRX-fil
Ladda ner Google Analytics Realtime Favicon-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | hlgebiiefbpiamgdhoheckclfgbkklkh |
Officiell webbadress | https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh |
Beskrivning | Replaces the Google Analytics favicon with a real time count of your site's visitors. |
Filstorlek | 13.85 KB |
Antal Installationer | 111 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2016-05-23 |
Publiceringsdatum | 2016-05-23 |
Utvecklare | brendonboshell |
Betalningssätt | free |
Stödda Språk | 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" ] } |