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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    }
}