Meeting URL Extractor on Calendar
Copies only the Google Meet URL from Google Calendar without any extra information by right-clicking once.
Meeting URL Extractor on Calendar란 무엇입니까?
Meeting URL Extractor on Calendar은(는) takahirostone에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copies only the Google Meet URL from Google Calendar without any extra information by right-clicking once."입니다.
확장 프로그램 스크린샷
Meeting URL Extractor on Calendar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You copy not only the Google Meet URL, but also extra information such as phone numbers when you use the default copy button on Google Calendar. This extension eliminates that frustration. Right-click on the event cell on the calendar or on the \"Join with Google Meet\" button to copy only the Google Meet URL to the clipboard.- See screenshot for getting how to use. - A green toast appears in the lower right corner of the window when copying succeeds. - Copying fails when the window does not focused (another window is used). Focus on the window and try again when a red toast appears in the lower right corner. - jQuery 3.6.1 (https://jquery.com/download/) - toastr (https://codeseven.github.io/toastr/) - ICOON MONO (https://icooon-mono.com/) - extension-meet-url-extractor (https://github.com/takahirostone/extension-meet-url-extractor)
확장 프로그램 기본 정보
이름 | |
ID | mlemdblfhpkkmabeegnifhnhedhclhln |
공식 URL | https://chromewebstore.google.com/detail/meeting-url-extractor-on/mlemdblfhpkkmabeegnifhnhedhclhln |
설명 | Copies only the Google Meet URL from Google Calendar without any extra information by right-clicking once. |
파일 크기 | 108 KB |
설치 횟수 | 268 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2023-01-05 |
출시 날짜 | 2022-11-29 |
개발자 | takahirostone |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.0.2", "manifest_version": 3, "description": "__MSG_extDescription__", "default_locale": "en", "icons": { "16": "icon\/icon_16.png", "48": "icon\/icon_48.png", "128": "icon\/icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "js\/jquery-3.6.1.min.js", "js\/toastr.min.js", "js\/content.js" ], "css": [ "css\/toastr.min.css" ] } ], "action": { "default_title": "__MSG_extName__", "default_popup": "html\/popup.html", "default_icon": { "16": "icon\/icon_16.png", "48": "icon\/icon_48.png", "128": "icon\/icon_128.png" } } } |