Peeps.Chat

This extension will allow you to share your screen with everyone that comes to your personal peeps.chat site.

Что такое Peeps.Chat?

Peeps.Chat - это расширение Chrome, разработанное https://peeps.chat, и его основная функция - "This extension will allow you to share your screen with everyone that comes to your personal peeps.chat site.".

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

screenshot

Скачать файл CRX расширения Peeps.Chat

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

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

                        This extension will allow you to share your screen with everyone that came to your personal peeps.chat site. 
Anyone on your site can view your screen in a window or they can use full screen in order to see everything more clearly. 
Peeps.chat sites are built with a new Real time communications software called webRTC and requires browsers such as Chrome, Firefox or Opera in order to run properly.                    

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

Название Peeps.Chat Peeps.Chat
ID pcjpmbeahidbndmjeenokfangoaapjkm
Официальный URL https://chromewebstore.google.com/detail/peepschat/pcjpmbeahidbndmjeenokfangoaapjkm
Описание This extension will allow you to share your screen with everyone that comes to your personal peeps.chat site.
Размер файла 7.92 KB
Количество установок 60
Текущая Версия 1.1.2
Последнее Обновление 2016-09-30
Дата публикации 2016-09-30
Разработчик https://peeps.chat
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://peeps.chat
URL страницы политики конфиденциальности https://peeps.chat
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Peeps.Chat",
    "author": "James",
    "version": "1.1.2",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This extension will allow you to share your screen with everyone that comes to your personal peeps.chat site.",
    "homepage_url": "https:\/\/peeps.chat\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "https:\/\/peeps.chat\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}