Page Ruler

Page Ruler: Draw rulers on web pages to check element alignment in Chrome.

O que é Page Ruler?

Page Ruler é uma extensão do Chrome desenvolvida por https://sudarshanrai.com.np, e sua principal característica é "Page Ruler: Draw rulers on web pages to check element alignment in Chrome.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Page Ruler

Baixe arquivos de extensão Page 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

                        Page Ruler is a browser extension that allows you to draw a ruler on any web page to check the alignment of page elements. With it, you can easily draw line guides to help you align elements. 

To use Page Ruler, simply click on the extension icon in the browser toolbar and enable it, then click on top of the window and drag a line on the page to draw a ruler. You can adjust the ruler's position by dragging the line. You can also use the options menu to change the color and style of the ruler. With Page Ruler, you can quickly and easily check the alignment of your UI elements to ensure that your web page looks professional and well-designed.                    

Informações Básicas da Extensão

Nome Page Ruler Page Ruler
ID eccmicoahcpagbnibfolooaocnlceieg
URL Oficial https://chromewebstore.google.com/detail/page-ruler/eccmicoahcpagbnibfolooaocnlceieg
Descrição Page Ruler: Draw rulers on web pages to check element alignment in Chrome.
Tamanho do Arquivo 15.33 KB
Contagem de Instalações 4,257
Versão Atual 2.2
Última Atualização 2023-12-08
Data de Publicação 2023-01-02
Classificação 3.80/5 Total de 10 Avaliações
Desenvolvedor https://sudarshanrai.com.np
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://chrome-extension-docs.vercel.app/page-ruler/privacy-policy
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Page Ruler",
    "description": "Page Ruler: Draw rulers on web pages to check element alignment in Chrome.",
    "version": "2.2",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": "assets\/default_icon.png"
    },
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "src\/scripts\/utils.js",
                "src\/scripts\/helper.js",
                "src\/scripts\/app.js"
            ],
            "css": [
                "src\/styles\/inject.css"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}