Page Grid Ruler

Draw a grid view, get page dimensions in pixel (px) unit and draw a rule

Page Grid Ruler क्या है?

Page Grid Ruler rynu.smith द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Draw a grid view, get page dimensions in pixel (px) unit and draw a rule"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Page Grid Ruler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Features:
- Displays a grid view with a customizable grid size.
- Presents a reference box.
- Shows a ruler indicating width, height, start, and endpoints.

How to Use It:
1. Navigate to a page and activate the action button.
2. The extension transitions to grid mode, allowing you to create a personalized ruler.
3. The ruler dynamically displays width, height, start, and endpoint measurements.
4. To return to normal browsing mode, press the "Escape" key or click the action button once.

Does this extension support "mm," "cm," or "in" units?
No, it does not provide precise values in these units. Instead, the extension employs pixel units. To convert pixel units to "cm" or "in," you'll need the screen's PPI (pixel density or resolution) value.

How can I modify the default grid size?
Right-click on the action button. Two menus will appear, allowing you to adjust the grid size and thickness.                    

एक्सटेंशन की मूल जानकारी

नाम Page Grid Ruler Page Grid Ruler
ID mpnmjbcgbfnbfjmljblfngeofmnehdig
आधिकारिक URL https://chromewebstore.google.com/detail/page-grid-ruler/mpnmjbcgbfnbfjmljblfngeofmnehdig
विवरण Draw a grid view, get page dimensions in pixel (px) unit and draw a rule
फ़ाइल का आकार 65.7 KB
स्थापना संख्या 1,770
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2023-09-25
प्रकाशन तिथि 2022-05-25
डेवलपर rynu.smith
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://webextension.org/listing/page-ruler.html
सहायता पृष्ठ URL https://webextension.org/listing/page-ruler.html
गोपनीयता नीति पृष्ठ URL https://add0n.com/policies/rynu.smith.txt
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.1.1",
    "name": "Page Grid Ruler",
    "description": "Draw a grid view, get page dimensions in pixel (px) unit and draw a rule",
    "offline_enabled": true,
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "scripting"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/page-ruler.html",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "action": [],
    "background": {
        "service_worker": "worker.js"
    },
    "commands": {
        "_execute_action": []
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/view\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}