Line2 Meet
A Chrome extension that allows you to schedule Line2 Meet conferences directly into Google Calendar.
Line2 Meet là gì?
Line2 Meet là một tiện ích mở rộng Chrome được phát triển bởi https://meet.line2.com/, và tính năng chính của nó là "A Chrome extension that allows you to schedule Line2 Meet conferences directly into Google Calendar.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Line2 Meet
Tải xuống các tệp mở rộng Line2 Meet 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Line2 Meet |
ID | pfecodblfialiigiiijigaffjpongaec |
URL Chính Thức | https://chromewebstore.google.com/detail/line2-meet/pfecodblfialiigiiijigaffjpongaec |
Mô tả | A Chrome extension that allows you to schedule Line2 Meet conferences directly into Google Calendar. |
Kích Thước Tệp | 2.66 MB |
Số Lần Cài Đặt | 13 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2021-06-22 |
Ngày Phát Hành | 2021-06-15 |
Nhà Phát Triển | https://meet.line2.com/ |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://meet.line2.com/ |
URL Trang Trợ Giúp | https://help.line2.com/ |
URL Trang Chính Sách Bảo Mật | https://www.line2.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |