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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    ]
}