Simple Ruler

This extension measures segments on the current tab and their slopes

Apa itu Simple Ruler?

Simple Ruler adalah ekstensi Chrome yang dikembangkan oleh Pablo Henriquez, dan fitur utamanya adalah "This extension measures segments on the current tab and their slopes".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Simple Ruler

Unduh file ekstensi Simple Ruler dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
URL Resmi https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
Deskripsi This extension measures segments on the current tab and their slopes
Ukuran File 50.76 KB
Jumlah Instalasi 72
Versi Saat Ini 0.1
Terakhir Diperbarui 2021-02-23
Tanggal Publikasi 2021-02-23
Penilaian 4.00/5 Total 2 Penilaian
Pengembang Pablo Henriquez
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}