F2F Screen Sharing
Share your screen on f2f.live
F2F Screen Sharingとは何ですか?
F2F Screen Sharingはhttps://f2f.liveによって開発されたChromeの拡張機能で、その主な機能は「Share your screen on f2f.live」です。
拡張機能のスクリーンショット
F2F Screen Sharing拡張機能のCRXファイルをダウンロード
F2F Screen Sharing拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to share a screen with your viewers on f2f.live. Capture an entire screen, a specific application, or a Chrome tab. 拡張機能の基本情報
| 名前 | |
| ID | dadbkaghakenpcikaemgfbaaomcibggo |
| 公式URL | https://chromewebstore.google.com/detail/f2f-screen-sharing/dadbkaghakenpcikaemgfbaaomcibggo |
| 説明 | Share your screen on f2f.live |
| ファイルサイズ | 17.81 KB |
| インストール数 | 144 |
| 現在のバージョン | 1.3.0 |
| 最終更新日 | 2018-02-17 |
| 公開日 | 2018-02-16 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | https://f2f.live |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://f2f.live |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "F2F Screen Sharing",
"short_name": "F2F Screen",
"description": "Share your screen on f2f.live",
"homepage_url": "https:\/\/f2f.live",
"version": "1.3.0",
"page_action": {
"default_icon": {
"19": "images\/logo_19x19.png",
"38": "images\/logo_38x38.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "images\/logo_16x16.png",
"32": "images\/logo_32x32.png",
"48": "images\/logo_48x48.png",
"64": "images\/logo_64x64.png",
"128": "images\/logo_128x128.png"
},
"background": {
"scripts": [
".\/build\/background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*.f2f.live\/*"
],
"js": [
".\/build\/script.js"
]
}
],
"web_accessible_resources": [
"images\/*.png"
],
"permissions": [
"desktopCapture",
"activeTab",
"tabs",
"https:\/\/*.f2f.live\/*"
]
} | |