Peeps.Chat

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

Peeps.Chat là gì?

Peeps.Chat là một tiện ích mở rộng Chrome được phát triển bởi https://peeps.chat, và tính năng chính của nó là "This extension will allow you to share your screen with everyone that comes to your personal peeps.chat site.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Peeps.Chat

Tải xuống các tệp mở rộng Peeps.Chat dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Peeps.Chat Peeps.Chat
ID pcjpmbeahidbndmjeenokfangoaapjkm
URL Chính Thức https://chromewebstore.google.com/detail/peepschat/pcjpmbeahidbndmjeenokfangoaapjkm
Mô tả This extension will allow you to share your screen with everyone that comes to your personal peeps.chat site.
Kích Thước Tệp 7.92 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2016-09-30
Ngày Phát Hành 2016-09-30
Nhà Phát Triển https://peeps.chat
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://peeps.chat
URL Trang Chính Sách Bảo Mật https://peeps.chat
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}