Simple Ruler

This extension measures segments on the current tab and their slopes

Co je Simple Ruler?

Simple Ruler je rozšíření Chrome vyvinuté Pablo Henriquez, a jeho hlavní funkcí je „This extension measures segments on the current tab and their slopes“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Simple Ruler

Stáhněte si soubory rozšíření Simple Ruler ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
Oficiální URL https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
Popis This extension measures segments on the current tab and their slopes
Velikost souboru 50.76 KB
Počet instalací 72
Aktuální Verze 0.1
Poslední Aktualizace 2021-02-23
Datum Vydání 2021-02-23
Hodnocení 4.00/5 Celkem 2 Hodnocení
Vývojář Pablo Henriquez
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}