Measuring Box

On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is

Что такое Measuring Box?

Measuring Box - это расширение Chrome, разработанное jonny_spry, и его основная функция - "On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Measuring Box

Скачайте файлы расширений Measuring Box в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Use the mouse to click and drag over an area of the webpage to measure the content underneath.
This also tells you what the aspect ratio is.                    

Основная информация о расширении

Название Measuring Box Measuring Box
ID jciegdpdoijocnobdcmdhbagjncapdfh
Официальный URL https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh
Описание On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is
Размер файла 86.55 KB
Количество установок 115
Текущая Версия 1.0
Последнее Обновление 2016-08-11
Дата публикации 2016-08-11
Рейтинг 2.00/5 Всего 4 оценок
Разработчик jonny_spry
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Measuring Box",
    "description": "On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is",
    "version": "1.0",
    "browser_action": {
        "default_icon": "box.png",
        "default_title": "icon"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}