Mis-share stopper

Mis-share stopper

When sharing documents or inviting guests, I paint red the users whose email address doesn't include the registered email domain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mis-share stopper",
  "action": {
    "default_popup": "option/option.html"
  },
  "manifest_version": 3,
  "version": "0.2",
  "description": "When sharing documents or inviting guests, I paint red the users whose email address doesn't include the registered email domain.",
  "permissions": [
    "storage"
  ],
  "icons": {
    "32": "icon/icon32.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/spreadsheets/*",
        "https://docs.google.com/presentation/*"
      ],
      "js": [
        "addressRedder/addressRedderSheetSlide.js"
      ]
    },
    {
      "matches": [
        "https://drive.google.com/*"
      ],
      "js": [
        "addressRedder/addressRedderDrive.js"
      ]
    },
    {
      "matches": [
        "https://calendar.google.com/*"
      ],
      "js": [
        "addressRedder/addressRedderCalendar.js"
      ]
    }
  ]
}