Meet Scheduler

An extension to start meetings automatically

Qu'est-ce que Meet Scheduler ?

Meet Scheduler est une extension Chrome développée par Akshat, et sa fonction principale est "An extension to start meetings automatically".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Meet Scheduler

Téléchargez les fichiers d'extension Meet Scheduler 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

                        Meetimely is the extension for online classes. 

Avoid fumbling with meeting links and times and missing your important lecture. Avoid that moment when you realise you forgot to leave the meeting when it ended hours ago.

Just add your meeting link, time and duration and sit back as it is handled for you.

New: Save and share your meeting details with others!                    

Informations de Base sur l'Extension

Nom Meet Scheduler Meet Scheduler
ID aenhmmfelkmdlihmaiblnhdmfopmbonc
URL Officiel https://chromewebstore.google.com/detail/meet-scheduler/aenhmmfelkmdlihmaiblnhdmfopmbonc
Description An extension to start meetings automatically
Taille du Fichier 105 KB
Nombre d'Installations 56
Version Actuelle 0.1.4
Dernière Mise à Jour 2022-02-02
Date de Publication 2021-08-14
Évaluation 5.00/5 Total 3 Évaluations
Développeur Akshat
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://akshat-oke.github.io/privacy.html
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Scheduler",
    "version": "0.1.4",
    "description": "An extension to start meetings automatically",
    "manifest_version": 3,
    "icons": {
        "48": "icon48.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Schedule meets",
        "default_popup": "popup\/popup.html"
    },
    "options_page": "options_page\/options_page.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "google-meet.css"
            ],
            "js": [
                "meet_script.js",
                "endCall-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "google-meet.html"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*",
                "https:\/\/www.google.com\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "https:\/\/*.jeenius.gq\/*"
        ]
    }
}