Line2 Meet
A Chrome extension that allows you to schedule Line2 Meet conferences directly into Google Calendar.
Line2 Meetとは何ですか?
Line2 Meetはhttps://meet.line2.com/によって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension that allows you to schedule Line2 Meet conferences directly into Google Calendar.」です。
拡張機能のスクリーンショット
Line2 Meet拡張機能のCRXファイルをダウンロード
Line2 Meet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The Chrome extension allows you to quickly and easily add the Line2 Meet video conference to any Google Calendar appointment. It automatically attaches the meeting details and URLs. With the encrypted meeting link and schedule information, invitees will be able to join the meeting by simply clicking on the meeting link.
拡張機能の基本情報
名前 | Line2 Meet |
ID | pfecodblfialiigiiijigaffjpongaec |
公式URL | https://chromewebstore.google.com/detail/line2-meet/pfecodblfialiigiiijigaffjpongaec |
説明 | A Chrome extension that allows you to schedule Line2 Meet conferences directly into Google Calendar. |
ファイルサイズ | 2.66 MB |
インストール数 | 13 |
現在のバージョン | 1.5 |
最終更新日 | 2021-06-22 |
公開日 | 2021-06-15 |
開発者 | https://meet.line2.com/ |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://meet.line2.com/ |
ヘルプページのURL | https://help.line2.com/ |
プライバシーポリシーページのURL | https://www.line2.com/privacy-policy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Line2 Meet", "description": "A Chrome extension that allows you to schedule Line2 Meet conferences directly into Google Calendar.", "version": "1.5", "permissions": [ "https:\/\/calendar.google.com\/*", "https:\/\/besapi.evoice.com\/*", "storage" ], "externally_connectable": { "matches": [ "https:\/\/meet.line2.com\/*", "https:\/\/besapi.evoice.com\/*" ] }, "background": { "scripts": [ "static\/js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "css": [ "css\/meet.css" ], "js": [ "static\/js\/content.js", "static\/js\/meetcalendar.js" ] } ], "icons": { "128": "images\/Line2-favicon-128.png", "16": "images\/Line2-favicon-16x16.png", "48": "images\/Line2-favicon-48x48.png" }, "browser_action": { "default_icon": { "192": "Line2-favicon-128.png" }, "default_title": "Line2 Meet conference", "default_popup": "popup.html" }, "options_ui": { "page": "options.html" }, "web_accessible_resources": [ "images\/line2-favicon-16x16.png", "images\/line2-favicon-48x48.png", "images\/line2-favicon-white-48x48.png", "images\/line2-logo-green.svg", "images\/line2-logo-grey.svg", "images\/line2-meet-logo-86x26.png" ] } |