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ファイルをダウンロード
Meeting URL Extractor on Calendar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } } } |