MeasureIt!

MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.

O que é MeasureIt!?

MeasureIt! é uma extensão do Chrome desenvolvida por Online Apps, e sua principal característica é "MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MeasureIt!

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

                        MeasureIt shows positioning and dimensions in pixel points. You can measure height and width of elements on web page.

HOW IT WORKS 
• Click to the icon of app on the current web page.  
• Draw ruler page and shows width, height, positioning of element.
• Click the icon again to exit the measurement.                    

Informações Básicas da Extensão

Nome MeasureIt! MeasureIt!
ID keoagpbljgpdoldcmfpgicnpijmfompi
URL Oficial https://chromewebstore.google.com/detail/measureit/keoagpbljgpdoldcmfpgicnpijmfompi
Descrição MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.
Tamanho do Arquivo 103 KB
Contagem de Instalações 12,336
Versão Atual 1.2.4
Última Atualização 2022-10-05
Data de Publicação 2020-06-13
Classificação 1.97/5 Total de 37 Avaliações
Desenvolvedor Online Apps
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "jquery.min.js",
            "backgroundMeasureIt.js"
        ]
    },
    "browser_action": {
        "default_icon": "off.png",
        "default_title": "MeasureIt"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "styleMeasureIt.css"
            ],
            "js": [
                "measureIt.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.",
    "manifest_version": 2,
    "name": "MeasureIt!",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "1.2.4",
    "icons": {
        "48": "ico_48.png",
        "128": "ico_128.png"
    }
}