Meet for Teachers

For educators using Google Meet.

What is Meet for Teachers?

Meet for Teachers is a Chrome extension developed by http://north27.co.uk, and its main feature is "For educators using Google Meet.".

Extension Screenshots

screenshot
screenshot

Download Meet for Teachers Extension CRX File

Download Meet for Teachers extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        • Toggle (on by default) to "lock meets" and ignore any join requests to mitigate against "meet bombing". When enabled the "N" icon will go green.
• At random (about 1 in 20), a popup with safeguarding tips/reminders will appear

To contribute with any suggestions please message us at https://www.north27.co.uk                    

Extension Basic Information

Name Meet for Teachers Meet for Teachers
ID edbemhpjllbfppjcdkefingohajokaca
Official URL https://chrome.google.com/webstore/detail/meet-for-teachers/edbemhpjllbfppjcdkefingohajokaca
Description For educators using Google Meet.
File Size 225 KB
Installation Count 10,000
Current Version 1.4
Last Updated 2021-03-31
Publish Date 2020-06-02
Rating 2.78/5 Total 9 Ratings
Developer http://north27.co.uk
Email [email protected]
Payment Type free
Help Page URL https://support.north27.co.uk
Privacy Policy Page URL http://north27.co.uk/aet-extension-privacy-policy
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet for Teachers",
    "version": "1.4",
    "description": "For educators using Google Meet.",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/**-**-**"
            ],
            "all_frames": true,
            "js": [
                "scripts\/main.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "identity",
        "identity.email"
    ],
    "icons": {
        "16": "assets\/icons\/n27_icon_16.png",
        "32": "assets\/icons\/n27_icon_32.png",
        "48": "assets\/icons\/n27_icon_48.png",
        "128": "assets\/icons\/n27_icon_128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "scripts\/*",
        "styles\/*"
    ],
    "browser_action": {
        "default_popup": "views\/popup.html",
        "default_title": "Meet for Teachers"
    }
}