Screen Capture and download

Capture current page and download the image.

Что такое Screen Capture and download?

Screen Capture and download - это расширение Chrome, разработанное extensioncreatorsllc, и его основная функция - "Capture current page and download the image.".

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

screenshot

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

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

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

                        This chrome extension allows user to take the screen shot of current page in chrome and download it as a image.                    

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

Название Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
Официальный URL https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
Описание Capture current page and download the image.
Размер файла 157 KB
Количество установок 6,726
Текущая Версия 1.5
Последнее Обновление 2019-08-27
Дата публикации 2019-08-27
Рейтинг 4.52/5 Всего 25 оценок
Разработчик extensioncreatorsllc
Тип оплаты free
URL страницы политики конфиденциальности https://bornsecret.com/privacy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capture and download",
    "version": "1.5",
    "description": "Capture current page and download the image.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content1.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Capture screen and download!",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        ""
    ],
    "manifest_version": 2
}