Meeting Caller

Meeting Caller will call you when a meeting in your Google calendar is due to start.

Τι είναι το Meeting Caller;

Το Meeting Caller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://orriss.io, και η κύρια λειτουργία του είναι "Meeting Caller will call you when a meeting in your Google calendar is due to start.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Meeting Caller

Λήψη αρχείων επέκτασης Meeting Caller σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Do you ever miss meetings because you didn't notice the notification or you simply lost track of time? Meeting Caller will play a sound to alert you when a meeting starts. You can accept or reject the call within the extension and accepting the call will open the Google Meet in a new tab!

Your calendar is checked every 10 minutes for updates and will show you your meetings for the next 12 hours. Settings allows you to control which meeting response types calls you. Maybe you only want accepted meetings to call you, this defaults to accepted, maybe and "requires action".

This extension does not store/use any of your calendar data other than to display it to you and to set the alarms.

As per Google's strong suggestion, your authorisation token is not stored in Chrome storage. Once logged in, your token is stored as a local variable that can only be accessed by this extension.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Meeting Caller Meeting Caller
ID clkhkjfdmenabbbldfplainfefjdjekm
Επίσημο URL https://chromewebstore.google.com/detail/meeting-caller/clkhkjfdmenabbbldfplainfefjdjekm
Περιγραφή Meeting Caller will call you when a meeting in your Google calendar is due to start.
Μέγεθος Αρχείου 408 KB
Αριθμός Εγκαταστάσεων 183
Τρέχουσα Έκδοση 1.3.2
Τελευταία Ενημέρωση 2023-08-21
Ημερομηνία Δημοσίευσης 2021-04-26
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://orriss.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://orriss.io/portfolio/meeting-caller/privacy
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meeting Caller",
    "description": "Meeting Caller will call you when a meeting in your Google calendar is due to start.",
    "version": "1.3.2",
    "manifest_version": 2,
    "minimum_chrome_version": "90",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "oauth2": {
        "client_id": "193184221159-s1j8h04kibjag8e10gknrvhfuv4hue0i.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar.events.readonly"
        ]
    },
    "permissions": [
        "identity",
        "alarms",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon-16.png",
            "32": "\/images\/icon-32.png",
            "48": "\/images\/icon-48.png",
            "128": "\/images\/icon-128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon-16.png",
        "32": "\/images\/icon-32.png",
        "48": "\/images\/icon-48.png",
        "128": "\/images\/icon-128.png"
    }
}