Simple Ruler

This extension measures segments on the current tab and their slopes

Was ist Simple Ruler?

Simple Ruler ist eine Chrome-Erweiterung, die von Pablo Henriquez entwickelt wurde, und ihr Hauptmerkmal ist "This extension measures segments on the current tab and their slopes".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Simple Ruler-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple Ruler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
Offizielle URL https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
Beschreibung This extension measures segments on the current tab and their slopes
Dateigröße 50.76 KB
Installationsanzahl 72
Aktuelle Version 0.1
Letztes Update 2021-02-23
Veröffentlichungsdatum 2021-02-23
Bewertung 4.00/5 Insgesamt 2 Bewertungen
Entwickler Pablo Henriquez
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}