Mouse Statistics
Tracks mouse events & key presses
Cos'è Mouse Statistics?
Mouse Statistics è un'estensione di Chrome sviluppata da https://www.pavsesh.com, e la sua funzione principale è "Tracks mouse events & key presses".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mouse Statistics
Scarica i file di estensione Mouse Statistics 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
Ever wondered how much have you been moving your mouse pointer or how much have you scrolled in your browser viewing the web pages? This is the extension which shows that! Informazioni di Base sull'Estensione
| Nome | |
| ID | dhalffenjnikgfekfdlohiehdbideadk |
| URL Ufficiale | https://chromewebstore.google.com/detail/mouse-statistics/dhalffenjnikgfekfdlohiehdbideadk |
| Descrizione | Tracks mouse events & key presses |
| Dimensione del File | 19.09 KB |
| Conteggio Installazioni | 55 |
| Versione Corrente | 1.0.2 |
| Ultimo Aggiornamento | 2018-05-31 |
| Data di Pubblicazione | 2018-05-31 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | https://www.pavsesh.com |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Mouse Statistics",
"version": "1.0.2",
"description": "Tracks mouse events & key presses",
"permissions": [
"storage",
"tabs",
"activeTab",
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"all_frames": true,
"js": [
"scripts\/adapters\/chrome.js",
"scripts\/tracker.js"
]
}
],
"background": {
"scripts": [
"scripts\/adapters\/chrome.js",
"scripts\/background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "views\/popup.html",
"default_icon": {
"16": "images\/logo-16.png",
"32": "images\/logo-32.png",
"48": "images\/logo-48.png",
"128": "images\/logo-128.png",
"256": "images\/logo-256.png"
}
},
"icons": {
"16": "images\/logo-16.png",
"32": "images\/logo-32.png",
"48": "images\/logo-48.png",
"128": "images\/logo-128.png",
"256": "images\/logo-256.png"
},
"chrome_url_overrides": {
"newtab": "views\/newtab.html"
},
"web_accessible_resources": [
"images\/*",
"scripts\/newtab.js"
],
"manifest_version": 2
} | |