Measure-it
Draw a ruler across any webpage to check the width, height, or alignment of page elements in pixels.
Что такое Measure-it?
Measure-it - это расширение Chrome, разработанное trishul.goel, и его основная функция - "Draw a ruler across any webpage to check the width, height, or alignment of page elements in pixels.".
Снимки экрана расширения
Скачать файл CRX расширения Measure-it
Скачайте файлы расширений Measure-it в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Customize the overlay and selector from extension options.
Основная информация о расширении
Название | Measure-it |
ID | jocbgkoackihphodedlefohapackjmna |
Официальный URL | https://chromewebstore.google.com/detail/measure-it/jocbgkoackihphodedlefohapackjmna |
Описание | Draw a ruler across any webpage to check the width, height, or alignment of page elements in pixels. |
Размер файла | 19.9 KB |
Количество установок | 74,144 |
Текущая Версия | 2.1.0 |
Последнее Обновление | 2018-12-23 |
Дата публикации | 2018-12-23 |
Рейтинг | 3.86/5 Всего 36 оценок |
Разработчик | trishul.goel |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/tsl143/measure-it |
URL страницы помощи | https://github.com/tsl143/measure-it/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Measure-it", "description": "Draw a ruler across any webpage to check the width, height, or alignment of page elements in pixels.", "version": "2.1.0", "icons": { "32": "icons\/icon_32.png", "64": "icons\/icon_64.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_icon": "icons\/icon_32.png", "default_title": "Measure-it" }, "background": { "scripts": [ "bg.js" ] }, "options_ui": { "page": "options.html" }, "permissions": [ "activeTab", "storage" ], "commands": { "open-measure-it": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "Open MeasureIt" } } } |