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开发的Chrome扩展程序,该扩展的主要功能是“Draw a grid view, get page dimensions in pixel (px) unit and draw a rule”。

扩展截图

screenshot

下载Page Grid Ruler扩展crx文件

下载Page Grid Ruler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}