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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον takahirostone, και η κύρια λειτουργία του είναι "Copies only the Google Meet URL from Google Calendar without any extra information by right-clicking once.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Meeting URL Extractor on Calendar
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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" } } } |