Mouse Coordinates
Display mouse coordinates on the web page.
ما هو Mouse Coordinates؟
Mouse Coordinates هو إضافة Chrome تم تطويرها بواسطة https://betelgeuseas.github.io/extensions، والميزة الرئيسية لها هي "Display mouse coordinates on the web page.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Mouse Coordinates
قم بتنزيل ملفات الامتداد Mouse Coordinates بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A Mouse Coordinates Chrome extension tracks and displays your mouse pointer position on your screen, useful for precise X and Y element positioning. معلومات أساسية عن التمديد
| الاسم | |
| ID | khdgjhdgmblhlngkhmnmbkacgjcecnah |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah |
| الوصف | Display mouse coordinates on the web page. |
| حجم الملف | 98.06 KB |
| عدد التثبيتات | 894 |
| النسخة الحالية | 1.0.0 |
| آخر تحديث | 2023-07-26 |
| تاريخ النشر | 2023-07-26 |
| تقييم | 4.75/5 مجموع تقييمات 4 |
| المطور | https://betelgeuseas.github.io/extensions |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://betelgeuseas.github.io/extensions/ |
| عنوان صفحة المساعدة | https://betelgeuseas.github.io/extensions/#contact |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Display mouse coordinates on the web page.",
"version": "1.0.0",
"manifest_version": 3,
"name": "Mouse Coordinates",
"homepage_url": "https:\/\/betelgeuseas.github.io\/extensions\/",
"action": {
"default_popup": "popup.html",
"default_title": "Mouse Coordinates",
"default_icon": "icon-32.png"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"64": "icon-64.png",
"128": "icon-128.png"
},
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"permissions": [
"contextMenus",
"storage"
]
} | |