Email My Students

Email My Students

Email all your students from Google Classroom using Microsoft Outlook

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Email My Students",
  "version": "1.0.2",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "Email all your students from Google Classroom using Microsoft Outlook",
  "permissions": [
    "webNavigation",
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js",
        "jquery.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/email_students16.png",
      "32": "images/email_students32.png",
      "48": "images/email_students48.png",
      "128": "images/email_students128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Email students from Google Classroom Using Microsoft Outlook"
  },
  "icons": {
    "16": "images/email_students16.png",
    "32": "images/email_students32.png",
    "48": "images/email_students48.png",
    "128": "images/email_students128.png"
  },
  "manifest_version": 2
}