Simple Ruler

This extension measures segments on the current tab and their slopes

Qu'est-ce que Simple Ruler ?

Simple Ruler est une extension Chrome développée par Pablo Henriquez, et sa fonction principale est "This extension measures segments on the current tab and their slopes".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Simple Ruler

Téléchargez les fichiers d'extension Simple Ruler au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
URL Officiel https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
Description This extension measures segments on the current tab and their slopes
Taille du Fichier 50.76 KB
Nombre d'Installations 72
Version Actuelle 0.1
Dernière Mise à Jour 2021-02-23
Date de Publication 2021-02-23
Évaluation 4.00/5 Total 2 Évaluations
Développeur Pablo Henriquez
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}