Simple Ruler

This extension measures segments on the current tab and their slopes

Wat is Simple Ruler?

Simple Ruler is een Chrome-extensie ontwikkeld door Pablo Henriquez, en de belangrijkste functie is "This extension measures segments on the current tab and their slopes".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Simple Ruler

Download Simple Ruler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
Officiële URL https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
Beschrijving This extension measures segments on the current tab and their slopes
Bestandsgrootte 50.76 KB
Aantal Installaties 72
Huidige Versie 0.1
Laatst Bijgewerkt 2021-02-23
Publicatiedatum 2021-02-23
Beoordeling 4.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Pablo Henriquez
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}