Screenshot Extension (Open Source)

A browser extension that takes screenshots

Что такое Screenshot Extension (Open Source)?

Screenshot Extension (Open Source) - это расширение Chrome, разработанное Michael, и его основная функция - "A browser extension that takes screenshots".

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

screenshot

Скачать файл CRX расширения Screenshot Extension (Open Source)

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

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

                        A browser extension that takes full-page or partial screenshots!

- Hold the Option/Alt key and drag the mouse to create partial screenshots.
- Click the icon to create full-page screenshots.

Source code: https://github.com/lxieyang/screenshot-extension                    

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

Название Screenshot Extension (Open Source) Screenshot Extension (Open Source)
ID hmkbkbpdnembpeadgpcmjekihjmckdjh
Официальный URL https://chromewebstore.google.com/detail/screenshot-extension-open/hmkbkbpdnembpeadgpcmjekihjmckdjh
Описание A browser extension that takes screenshots
Размер файла 58.05 KB
Количество установок 149
Текущая Версия 1.0.0
Последнее Обновление 2020-11-20
Дата публикации 2020-11-18
Разработчик Michael
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/lxieyang/chrome-extension-boilerplate-react
URL страницы помощи https://github.com/lxieyang/chrome-extension-boilerplate-react
URL страницы политики конфиденциальности https://github.com/lxieyang/lxieyang.github.io/wiki/Chrome-Extension-Privacy-Policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A browser extension that takes screenshots",
    "version": "1.0.0",
    "name": "Screenshot Extension (Open Source)",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "icon-34.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "downloads",
        "",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "cross-32.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}