Mouse Statistics
Tracks mouse events & key presses
Was ist Mouse Statistics?
Mouse Statistics ist eine Chrome-Erweiterung, die von https://www.pavsesh.com entwickelt wurde, und ihr Hauptmerkmal ist "Tracks mouse events & key presses".
Erweiterungsscreenshots
Mouse Statistics-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mouse Statistics-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | |
ID | dhalffenjnikgfekfdlohiehdbideadk |
Offizielle URL | https://chromewebstore.google.com/detail/mouse-statistics/dhalffenjnikgfekfdlohiehdbideadk |
Beschreibung | Tracks mouse events & key presses |
Dateigröße | 19.09 KB |
Installationsanzahl | 55 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2018-05-31 |
Veröffentlichungsdatum | 2018-05-31 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://www.pavsesh.com |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |