Screen Sharing
Capture full-screen or specific application's screen.
Screen Sharingとは何ですか?
Screen Sharingはhttps://engducate.comによって開発されたChromeの拡張機能で、その主な機能は「Capture full-screen or specific application's screen.」です。
拡張機能のスクリーンショット
Screen Sharing拡張機能のCRXファイルをダウンロード
Screen Sharing拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
To enable screen sharing on the following websites:
- https://webrtc.ziotes.com/
- https://localhost:8443/
- https://engducate.com/
- https://ko.engducate.com/ 拡張機能の基本情報
| 名前 | |
| ID | aafipaghlllcbognnpmdplmpielpaepp |
| 公式URL | https://chromewebstore.google.com/detail/screen-sharing/aafipaghlllcbognnpmdplmpielpaepp |
| 説明 | Capture full-screen or specific application's screen. |
| ファイルサイズ | 5.52 KB |
| インストール数 | 124 |
| 現在のバージョン | 1.4 |
| 最終更新日 | 2018-11-28 |
| 公開日 | 2018-11-27 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | https://engducate.com |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://engducate.com/ |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Screen Sharing",
"author": "Emmanuel Joseph Perion",
"version": "1.4",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Capture full-screen or specific application's screen.",
"homepage_url": "https:\/\/webrtc.ziotes.com\/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https:\/\/webrtc.ziotes.com\/*",
"https:\/\/localhost\/*",
"https:\/\/engducate.com\/*",
"https:\/\/ko.engducate.com\/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
} | |