Desktop Screen Capture

This WebRTC screen capturing extension can be used within any WebRTC library/application!

Что такое Desktop Screen Capture?

Desktop Screen Capture - это расширение Chrome, разработанное Kesavan, и его основная функция - "This WebRTC screen capturing extension can be used within any WebRTC library/application!".

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

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

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

                        This plugin will capture desktop screen and share with application used                    

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

Название Desktop Screen Capture Desktop Screen Capture
ID incidfiopdpenddingekgkhmdnkackke
Официальный URL https://chromewebstore.google.com/detail/desktop-screen-capture/incidfiopdpenddingekgkhmdnkackke
Описание This WebRTC screen capturing extension can be used within any WebRTC library/application!
Размер файла 23.53 KB
Количество установок 30
Текущая Версия 1.3
Последнее Обновление 2015-09-06
Дата публикации 2015-09-06
Разработчик Kesavan
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Desktop Screen Capture",
    "author": "Kesavan Mannupillai",
    "version": "1.3",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This WebRTC screen capturing extension can be used within any WebRTC library\/application!",
    "homepage_url": "https:\/\/52.25.232.34\/getScreenId\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "1": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}