Confrere Screensharing
Enables screen sharing in Confrere
什么是Confrere Screensharing?
Confrere Screensharing是由https://confrere.com开发的Chrome扩展程序,该扩展的主要功能是“Enables screen sharing in Confrere”。
扩展截图
下载Confrere Screensharing扩展crx文件
下载Confrere Screensharing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension enables screensharing for Confrere-based products. The extension may be installed to *.confrere.com.
扩展基本信息
名称 | Confrere Screensharing |
ID | okifmkhblklokdfkgaejkpmleiajepml |
官方URL | https://chromewebstore.google.com/detail/confrere-screensharing/okifmkhblklokdfkgaejkpmleiajepml |
简介 | Enables screen sharing in Confrere |
文件大小 | 47 KB |
安装次数 | 95 |
当前版本 | 1.1.1 |
更新时间 | 2019-01-11 |
上架时间 | 2019-01-11 |
评分 | 5.00/5 共1次评分 |
开发者 | https://confrere.com |
付费类型 | free |
扩展官网 | https://confrere.com |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Confrere Screensharing", "description": "Enables screen sharing in Confrere", "version": "1.1.1", "manifest_version": 2, "minimum_chrome_version": "34", "icons": { "16": "icon-16x16.png", "32": "icon-32x32.png", "128": "icon-128x128.png", "192": "icon-192x192.png", "512": "icon-512x512.png" }, "permissions": [ "desktopCapture", "https:\/\/*.confrere.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*.confrere.com\/*", "http:\/\/localhost:3000\/*" ] } ], "externally_connectable": { "matches": [ "https:\/\/*.confrere.com\/*", "http:\/\/localhost:3000\/*" ] } } |