Just Not Sorry -- the Chrome extension

Just Not Sorry -- the Chrome extension

A Chrome extension that warns you when you write emails using words which undermine your message

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Just Not Sorry -- the Chrome extension",
  "short_name": "JustNotSorry",
  "author": "Steve Brudz, Manish Kakwani, Tami Reiss, and Eric Tillberg of Def Method",
  "version": "2.4.0",
  "version_name": "2.4.0",
  "description": "A Chrome extension that warns you when you write emails using words which undermine your message",
  "icons": {
    "16": "img/JustNotSorry-16.png",
    "48": "img/JustNotSorry-48.png",
    "128": "img/JustNotSorry-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.office.com/*",
        "https://outlook.live.com/*",
        "https://outlook.office365.com/*"
      ],
      "css": [
        "./just-not-sorry.css"
      ],
      "js": [
        "bundle.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "19": "img/JustNotSorry-19.png",
      "38": "img/JustNotSorry-38.png"
    },
    "default_title": "Just Not Sorry"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [],
  "permissions": [
    "notifications"
  ]
}