Meet Scheduler

An extension to start meetings automatically

Meet Schedulerとは何ですか?

Meet SchedulerはAkshatによって開発されたChromeの拡張機能で、その主な機能は「An extension to start meetings automatically」です。

拡張機能のスクリーンショット

screenshot
screenshot

Meet Scheduler拡張機能のCRXファイルをダウンロード

Meet Scheduler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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\/*"
        ]
    }
}