Mouse Statistics
Tracks mouse events & key presses
ما هو Mouse Statistics؟
Mouse Statistics هو إضافة Chrome تم تطويرها بواسطة https://www.pavsesh.com، والميزة الرئيسية لها هي "Tracks mouse events & key presses".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Mouse Statistics
قم بتنزيل ملفات الامتداد Mouse Statistics بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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!
معلومات أساسية عن التمديد
الاسم | |
ID | dhalffenjnikgfekfdlohiehdbideadk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/mouse-statistics/dhalffenjnikgfekfdlohiehdbideadk |
الوصف | Tracks mouse events & key presses |
حجم الملف | 19.09 KB |
عدد التثبيتات | 55 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2018-05-31 |
تاريخ النشر | 2018-05-31 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | https://www.pavsesh.com |
نوع الدفع | free |
اللغات المدعومة | 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 } |