Right Now Counter
Simply add visitor counter in document title of your google analytics real-time page
Cos'è Right Now Counter?
Right Now Counter è un'estensione di Chrome sviluppata da https://www.rain1.it, e la sua funzione principale è "Simply add visitor counter in document title of your google analytics real-time page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Right Now Counter
Scarica i file di estensione Right Now Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension change document title of real time page in google analytics account. So you can see more counter at same time. See screenshot
Informazioni di Base sull'Estensione
Nome | Right Now Counter |
ID | bnlafhbijlchjdhcehaojegaflnmmpem |
URL Ufficiale | https://chromewebstore.google.com/detail/right-now-counter/bnlafhbijlchjdhcehaojegaflnmmpem |
Descrizione | Simply add visitor counter in document title of your google analytics real-time page |
Dimensione del File | 30.62 KB |
Conteggio Installazioni | 89 |
Versione Corrente | 0.5 |
Ultimo Aggiornamento | 2016-04-04 |
Data di Pubblicazione | 2016-04-04 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | https://www.rain1.it |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Right Now Counter", "manifest_version": 2, "description": "Simply add visitor counter in document title of your google analytics real-time page", "permissions": [ "tabs", "http:\/\/www.google.com\/analytics\/*", "https:\/\/www.google.com\/analytics\/*" ], "version": "0.5", "icons": { "128": "rightnow_128x128.png", "16": "rightnow16.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/analytics\/*", "https:\/\/www.google.com\/analytics\/*", "https:\/\/analytics.google.com\/analytics\/*" ], "js": [ "js.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "Right now Counter", "default_icon": "rightnow16.png", "default_popup": "popup.html" } } |