Simple Page Screenshot

Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.

Что такое Simple Page Screenshot?

Simple Page Screenshot - это расширение Chrome, разработанное paradoxxxzero, и его основная функция - "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.".

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

screenshot
screenshot

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

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

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

                        Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.


Right click on the image to save it or copy the datu URL with Copy image URL                    

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

Название Simple Page Screenshot Simple Page Screenshot
ID llhehkgnfcfjbpknaljplknmimhggbpa
Официальный URL https://chrome.google.com/webstore/detail/simple-page-screenshot/llhehkgnfcfjbpknaljplknmimhggbpa
Описание Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.
Размер файла 8.71 KB
Количество установок 255
Текущая Версия 1.0.0
Последнее Обновление 2014-04-04
Дата публикации 2014-04-04
Рейтинг 1.00/5 Всего 1 оценок
Разработчик paradoxxxzero
Тип оплаты free
Официальный сайт расширения https://github.com/paradoxxxzero/simple_page_screenshot
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Page Screenshot",
    "version": "1.0.0",
    "author": "Florian Mounier - paradoxxxzero",
    "homepage_url": "https:\/\/github.com\/paradoxxxzero\/simple_page_screenshot",
    "description": "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        ""
    ]
}