Simple Ruler

This extension measures segments on the current tab and their slopes

ما هو Simple Ruler؟

Simple Ruler هو إضافة Chrome تم تطويرها بواسطة Pablo Henriquez، والميزة الرئيسية لها هي "This extension measures segments on the current tab and their slopes".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Simple Ruler

قم بتنزيل ملفات الامتداد Simple Ruler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
عنوان URL الرسمي https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
الوصف This extension measures segments on the current tab and their slopes
حجم الملف 50.76 KB
عدد التثبيتات 72
النسخة الحالية 0.1
آخر تحديث 2021-02-23
تاريخ النشر 2021-02-23
تقييم 4.00/5 مجموع تقييمات 2
المطور Pablo Henriquez
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    }
}