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 |
官方網址 | 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" } } } |