Simple Ruler

This extension measures segments on the current tab and their slopes

Cos'è Simple Ruler?

Simple Ruler è un'estensione di Chrome sviluppata da Pablo Henriquez, e la sua funzione principale è "This extension measures segments on the current tab and their slopes".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Simple Ruler

Scarica i file di estensione Simple Ruler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
URL Ufficiale https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
Descrizione This extension measures segments on the current tab and their slopes
Dimensione del File 50.76 KB
Conteggio Installazioni 72
Versione Corrente 0.1
Ultimo Aggiornamento 2021-02-23
Data di Pubblicazione 2021-02-23
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore Pablo Henriquez
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}