Page Grid Ruler

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

O que é Page Grid Ruler?

Page Grid Ruler é uma extensão do Chrome desenvolvida por rynu.smith, e sua principal característica é "Draw a grid view, get page dimensions in pixel (px) unit and draw a rule".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Page Grid Ruler

Baixe arquivos de extensão Page Grid Ruler no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Page Grid Ruler Page Grid Ruler
ID mpnmjbcgbfnbfjmljblfngeofmnehdig
URL Oficial https://chromewebstore.google.com/detail/page-grid-ruler/mpnmjbcgbfnbfjmljblfngeofmnehdig
Descrição Draw a grid view, get page dimensions in pixel (px) unit and draw a rule
Tamanho do Arquivo 65.7 KB
Contagem de Instalações 1,770
Versão Atual 0.1.1
Última Atualização 2023-09-25
Data de Publicação 2022-05-25
Desenvolvedor rynu.smith
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://webextension.org/listing/page-ruler.html
URL da Página de Ajuda https://webextension.org/listing/page-ruler.html
URL da Página de Política de Privacidade https://add0n.com/policies/rynu.smith.txt
Idiomas Suportados 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}