Simple Ruler

This extension measures segments on the current tab and their slopes

O que é Simple Ruler?

Simple Ruler é uma extensão do Chrome desenvolvida por Pablo Henriquez, e sua principal característica é "This extension measures segments on the current tab and their slopes".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Simple Ruler

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

                        Draw a segment on the tab to know its measure and inclination.
The segment creates a circle to know its radial measurement.                    

Informações Básicas da Extensão

Nome Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
URL Oficial https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
Descrição This extension measures segments on the current tab and their slopes
Tamanho do Arquivo 50.76 KB
Contagem de Instalações 72
Versão Atual 0.1
Última Atualização 2021-02-23
Data de Publicação 2021-02-23
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor Pablo Henriquez
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Ruler",
    "description": "This extension measures segments on the current tab and their slopes",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                ".\/styles.css"
            ],
            "js": [
                ".\/script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ]
    },
    "icons": {
        "128": ".\/icon_128.png"
    },
    "browser_action": {
        "default_icon": ".\/icon_128.png"
    }
}