When2MeetGoogle

Autofill when to meets with your google calendar.

Wat is When2MeetGoogle?

When2MeetGoogle is een Chrome-extensie ontwikkeld door ryanreszetnik, en de belangrijkste functie is "Autofill when to meets with your google calendar.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie When2MeetGoogle

Download When2MeetGoogle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam When2MeetGoogle When2MeetGoogle
ID gmkejagepejdikcliicfegjjhdinacbo
Officiële URL https://chromewebstore.google.com/detail/when2meetgoogle/gmkejagepejdikcliicfegjjhdinacbo
Beschrijving Autofill when to meets with your google calendar.
Bestandsgrootte 215 KB
Aantal Installaties 122
Huidige Versie 1.1
Laatst Bijgewerkt 2023-02-07
Publicatiedatum 2023-02-07
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar ryanreszetnik
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://when-2-meet-chrome.web.app
Help Pagina-URL https://when-2-meet-chrome.web.app
URL van de Privacybeleid Pagina https://life-planner-fea8f.web.app/privacy
Ondersteunde Talen 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"
        ]
    }
}