Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

Что такое Lightweight Screenshot?

Lightweight Screenshot - это расширение Chrome, разработанное Adam Feor, и его основная функция - "Take screenshots. Also works for full page and custom-size screenshots.".

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

screenshot

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

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

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

                        A simple screenshot extension for Chrome. Supports taking screenshots of the current window, of an entire page (scrolling) and of a custom area.                    

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

Название Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
Официальный URL https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
Описание Take screenshots. Also works for full page and custom-size screenshots.
Размер файла 39.4 KB
Количество установок 478
Текущая Версия 1.1
Последнее Обновление 2018-04-29
Дата публикации 2018-04-29
Рейтинг 4.00/5 Всего 5 оценок
Разработчик Adam Feor
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lightweight Screenshot",
    "description": "Take screenshots. Also works for full page and custom-size screenshots.",
    "version": "1.1",
    "icons": {
        "19": "images\/monitoriconsmall.png",
        "48": "images\/monitoricon48.png",
        "128": "images\/monitoricon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/cus.png",
        "image\/vis.png",
        "images\/full.png",
        "images\/check.png",
        "images\/cross.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/monitoriconsmall.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads"
    ]
}