Simple Ruler

This extension measures segments on the current tab and their slopes

Co to jest Simple Ruler?

Simple Ruler to rozszerzenie Chrome opracowane przez Pablo Henriquez, a jego główną funkcją jest „This extension measures segments on the current tab and their slopes”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Simple Ruler

Pobierz pliki rozszerzeń Simple Ruler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
Oficjalny URL https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
Opis This extension measures segments on the current tab and their slopes
Rozmiar pliku 50.76 KB
Liczba instalacji 72
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2021-02-23
Data Publikacji 2021-02-23
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper Pablo Henriquez
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}