Meet Scheduler

An extension to start meetings automatically

Meet Scheduler क्या है?

Meet Scheduler Akshat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to start meetings automatically"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Meet Scheduler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Meet Scheduler Meet Scheduler
ID aenhmmfelkmdlihmaiblnhdmfopmbonc
आधिकारिक URL https://chromewebstore.google.com/detail/meet-scheduler/aenhmmfelkmdlihmaiblnhdmfopmbonc
विवरण An extension to start meetings automatically
फ़ाइल का आकार 105 KB
स्थापना संख्या 56
वर्तमान संस्करण 0.1.4
अंतिम अपडेट 2022-02-02
प्रकाशन तिथि 2021-08-14
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Akshat
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://akshat-oke.github.io/privacy.html
समर्थित भाषाएँ 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\/*"
        ]
    }
}