Mouse Coordinates
Display mouse coordinates on the web page.
Mouse Coordinates क्या है?
Mouse Coordinates https://betelgeuseas.github.io/extensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display mouse coordinates on the web page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mouse Coordinates एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A Mouse Coordinates Chrome extension tracks and displays your mouse pointer position on your screen, useful for precise X and Y element positioning.
एक्सटेंशन की मूल जानकारी
नाम | Mouse Coordinates |
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/ |
सहायता पृष्ठ URL | 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" ] } |