Page Ruler

Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.

O que é Page Ruler?

Page Ruler é uma extensão do Chrome desenvolvida por Page Ruler, e sua principal característica é "Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.".

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 popular app for measuring elements on web pages. Measure it width and height in pixels on any websites.

Click the icon and draw ruler to get pixel dimensions. The color icon means the on mode for measuremen. The black and white icon means off.

Thank you for installation and please give Page Ruler five stars!                    

Informações Básicas da Extensão

Nome Page Ruler Page Ruler
ID idhjfgkakeliobkfbijghiaklmiaheag
URL Oficial https://chrome.google.com/webstore/detail/page-ruler/idhjfgkakeliobkfbijghiaklmiaheag
Descrição Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.
Tamanho do Arquivo 92.3 KB
Contagem de Instalações 54,686
Versão Atual 2.0.0
Última Atualização 2023-06-06
Data de Publicação 2018-07-29
Classificação 1.25/5 Total de 71 Avaliações
Desenvolvedor Page Ruler
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "off.png",
        "default_title": "Page Ruler"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "styleMeasureIt.css"
            ],
            "js": [
                "measureIt.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.",
    "manifest_version": 3,
    "name": "Page Ruler",
    "permissions": [
        "tabs",
        "storage"
    ],
    "version": "2.0.0",
    "icons": {
        "48": "ico_48.png",
        "16": "ico_16.png",
        "128": "ico_128.png",
        "19": "ico_19.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "injected_content.js"
            ]
        }
    ]
}