Hex-Grid
Show grid lines directly on any web page and also calculate pixel distances between elements.
Hex-Grid क्या है?
Hex-Grid thehexcord द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show grid lines directly on any web page and also calculate pixel distances between elements."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hex-Grid एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Have you ever wanted to visualize grid lines directly on web pages or calculate pixel distances between elements on a web page? Then this should be useful to you. After activating the extension, you can build grids by pulling out vertical lines from the left of the web page and pulling out horizontal lines from the top of the web page. Delete grid lines by selecting on the line to focus and using either the Backspace or Delete keys. Calculate pixel distances by clicking to select the starting point and moving the cursor to the destination element. Toggle the visibility of grid by right-clicking and selecting Toggle Grid Visibility.
एक्सटेंशन की मूल जानकारी
नाम | Hex-Grid |
ID | pidmjejnmfobkafcmkhppinpladjnnpg |
आधिकारिक URL | https://chromewebstore.google.com/detail/hex-grid/pidmjejnmfobkafcmkhppinpladjnnpg |
विवरण | Show grid lines directly on any web page and also calculate pixel distances between elements. |
फ़ाइल का आकार | 46.79 KB |
स्थापना संख्या | 90 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2020-11-22 |
प्रकाशन तिथि | 2020-11-16 |
डेवलपर | thehexcord |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/grantfayvor/gridify |
सहायता पृष्ठ URL | https://www.hyperdebugger.dev |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hex-Grid", "version": "1.0.2", "manifest_version": 2, "description": "Show grid lines directly on any web page and also calculate pixel distances between elements.", "browser_action": { "default_icon": "images\/hex_grid_logo.png", "default_popup": "index.html" }, "permissions": [ "activeTab", "contextMenus" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "images\/hex_grid_logo_w128_h128.png", "32": "images\/hex_grid_logo_w128_h128.png", "48": "images\/hex_grid_logo_w128_h128.png", "128": "images\/hex_grid_logo_w128_h128.png", "256": "images\/hex_grid_logo_w256_h256.png", "512": "images\/hex_grid_logo_w512_h512.png" }, "web_accessible_resources": [ "content_script\/rulers.html", "content_script\/styles.css" ] } |