When2MeetGoogle

Autofill when to meets with your google calendar.

Qu'est-ce que When2MeetGoogle ?

When2MeetGoogle est une extension Chrome développée par ryanreszetnik, et sa fonction principale est "Autofill when to meets with your google calendar.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension When2MeetGoogle

Téléchargez les fichiers d'extension When2MeetGoogle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom When2MeetGoogle When2MeetGoogle
ID gmkejagepejdikcliicfegjjhdinacbo
URL Officiel https://chromewebstore.google.com/detail/when2meetgoogle/gmkejagepejdikcliicfegjjhdinacbo
Description Autofill when to meets with your google calendar.
Taille du Fichier 215 KB
Nombre d'Installations 122
Version Actuelle 1.1
Dernière Mise à Jour 2023-02-07
Date de Publication 2023-02-07
Évaluation 5.00/5 Total 4 Évaluations
Développeur ryanreszetnik
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://when-2-meet-chrome.web.app
URL de la Page d'Aide https://when-2-meet-chrome.web.app
URL de la Page de Politique de Confidentialité https://life-planner-fea8f.web.app/privacy
Langues Prises en Charge 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"
        ]
    }
}