When2MeetGoogle
Autofill when to meets with your google calendar.
When2MeetGoogle क्या है?
When2MeetGoogle ryanreszetnik द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Autofill when to meets with your google calendar."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में When2MeetGoogle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Filling out when2meets are always tedious so using When2MeetGoogle will allow you to fill out your availability based on your google calendar in one click! Just pressed the autofill button and it will be filled.
एक्सटेंशन की मूल जानकारी
नाम | When2MeetGoogle |
ID | gmkejagepejdikcliicfegjjhdinacbo |
आधिकारिक URL | https://chromewebstore.google.com/detail/when2meetgoogle/gmkejagepejdikcliicfegjjhdinacbo |
विवरण | Autofill when to meets with your google calendar. |
फ़ाइल का आकार | 215 KB |
स्थापना संख्या | 122 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2023-02-07 |
प्रकाशन तिथि | 2023-02-07 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | ryanreszetnik |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://when-2-meet-chrome.web.app |
सहायता पृष्ठ URL | https://when-2-meet-chrome.web.app |
गोपनीयता नीति पृष्ठ URL | https://life-planner-fea8f.web.app/privacy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "When2MeetGoogle", "description": "Autofill when to meets with your google calendar.", "version": "1.1", "manifest_version": 3, "icons": { "16": "logo192.png", "48": "logo192.png", "128": "logo192.png" }, "background": { "service_worker": ".\/static\/js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.when2meet.com\/*" ], "js": [ ".\/static\/js\/content.js" ], "all_frames": false, "run_at": "document_end" } ], "content_security_policy": { "script-src": "self", "object-src": "self" }, "externally_connectable": { "matches": [ "*:\/\/*.google.com\/*" ] }, "permissions": [ "tabs", "identity" ], "optional_permissions": [], "oauth2": { "client_id": "391349501740-6hfprkdm7f5a9lmd0q7es9itrimqpt30.apps.googleusercontent.com", "scopes": [ "profile email", "https:\/\/www.googleapis.com\/auth\/calendar" ] } } |