Screenshot Capture

Capture viewport, crop & save to file, copy to clipboard as binary or data URL

Что такое Screenshot Capture?

Screenshot Capture - это расширение Chrome, разработанное simov.github.io, и его основная функция - "Capture viewport, crop & save to file, copy to clipboard as binary or data URL".

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

screenshot

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

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

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

                        ✔ Secure by design
✔ Capture Viewport
✔ Crop and Save (automatic save)
✔ Crop and Wait (manual save)
✔ Configurable Keyboard Shortcut
✔ Save screenshot as PNG or JPG image file
✔ Copy screenshot to clipboard as Data URL String or Binary Image
✔ Preserve or downscale screenshot size on HDPI displays like Retina
✔ Unique screenshot date/time file name
✔ No special permissions required
✔ Free and Open Source

✚ Full Documentation

✔ https://github.com/simov/screenshot-capture                    

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

Название Screenshot Capture Screenshot Capture
ID giabbpobpebjfegnpcclkocepcgockkc
Официальный URL https://chromewebstore.google.com/detail/screenshot-capture/giabbpobpebjfegnpcclkocepcgockkc
Описание Capture viewport, crop & save to file, copy to clipboard as binary or data URL
Размер файла 96.83 KB
Количество установок 128,931
Текущая Версия 3.1
Последнее Обновление 2023-11-21
Дата публикации 2019-07-13
Рейтинг 4.18/5 Всего 111 оценок
Разработчик simov.github.io
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/simov/screenshot-capture
URL страницы помощи https://github.com/simov/screenshot-capture/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Screenshot Capture",
    "version": "3.1",
    "description": "Capture viewport, crop & save to file, copy to clipboard as binary or data URL",
    "homepage_url": "https:\/\/chromewebstore.google.com\/detail\/screenshot-capture\/giabbpobpebjfegnpcclkocepcgockkc",
    "icons": {
        "16": "\/icons\/default\/16x16.png",
        "19": "\/icons\/default\/19x19.png",
        "38": "\/icons\/default\/38x38.png",
        "48": "\/icons\/default\/48x48.png",
        "128": "\/icons\/default\/128x128.png"
    },
    "action": {
        "default_icon": {
            "16": "\/icons\/default\/16x16.png",
            "19": "\/icons\/default\/19x19.png",
            "38": "\/icons\/default\/38x38.png",
            "48": "\/icons\/default\/48x48.png",
            "128": "\/icons\/default\/128x128.png"
        },
        "default_title": "Screenshot Capture"
    },
    "background": {
        "service_worker": "background\/index.js"
    },
    "options_page": "\/options\/index.html",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "\/vendor\/Jcrop.gif",
                "\/content\/pixel.png"
            ]
        }
    ],
    "commands": {
        "take-screenshot": {
            "description": "Take Screenshot",
            "suggested_key": {
                "default": "Alt+S"
            }
        }
    },
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ]
}