Page Ruler

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

¿Qué es Page Ruler?

Page Ruler es una extensión de Chrome desarrollada por Page Ruler, y su función principal es "Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Page Ruler

Descarga archivos de extensión Page Ruler en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Page Ruler Page Ruler
ID idhjfgkakeliobkfbijghiaklmiaheag
URL Oficial https://chrome.google.com/webstore/detail/page-ruler/idhjfgkakeliobkfbijghiaklmiaheag
Descripción Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.
Tamaño del Archivo 92.3 KB
Cantidad de Instalaciones 54,686
Versión Actual 2.0.0
Última Actualización 2023-06-06
Fecha de Publicación 2018-07-29
Calificación 1.25/5 Total de 71 Calificaciones
Desarrollador Page Ruler
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}