SnapGuide

Chrome extension for measuring elements on page

Что такое SnapGuide?

SnapGuide - это расширение Chrome, разработанное Alex, и его основная функция - "Chrome extension for measuring elements on page".

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

screenshot
screenshot
screenshot

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

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

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

                        SnapGuide is a tool that brings Photoshop-like guides to web. It lets you put down guides that snap intelligently to the page content. It snaps to borders and padding, and will even snap to the baseline of text. There is on-screen help with a list of shortcuts.

Unlike some extensions it will not interfere with any webpage you visit unless you click the SnapGuide icon.

Once installed: Click icon or Alt+Shift+S to activate. Read help, or press Space to dismiss it. Mouse over document, observe that rules snap to useful positions (including baselines!), and use keys as follows:

V – add vertical guide
H – add horizontal guide
Q – remove all guides
←, ↑, →, ↓ – move cursor 1px (+ Shift for x10)
Space – toggle help

Alt+Shift+S - launch SnapGuide

Please leave feedback or send me suggestions at [email protected]                    

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

Название SnapGuide SnapGuide
ID cpmeolfjcjhjgkimkdcgcddndmjndomh
Официальный URL https://chromewebstore.google.com/detail/snapguide/cpmeolfjcjhjgkimkdcgcddndmjndomh
Описание Chrome extension for measuring elements on page
Размер файла 194 KB
Количество установок 1,766
Текущая Версия 1.0.1
Последнее Обновление 2021-02-08
Дата публикации 2020-05-20
Рейтинг 4.29/5 Всего 14 оценок
Разработчик Alex
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://measuremate.xyz/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SnapGuide",
    "description": "Chrome extension for measuring elements on page",
    "icons": {
        "128": "icon\/icon128.png",
        "48": "icon\/icon48.png",
        "16": "icon\/icon16.png"
    },
    "version": "1.0.1",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "browser_action": {
            "default_title": "SnapGuide",
            "default_icon": "icon\/icon16.png"
        }
    },
    "commands": {
        "toggle-snap-guide": {
            "suggested_key": {
                "default": "Alt+Shift+Z",
                "mac": "Alt+Shift+Z"
            },
            "description": "Toggles SnapGuide"
        }
    },
    "manifest_version": 2
}