Meet Math Support

Meet Math Support

Parse basic markdown and tex-equations in your Google Meet chat window!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Meet Math Support",
  "description": "Parse basic markdown and tex-equations in your Google Meet chat window!",
  "author": "Shubham Panchal ([email protected])",
  "version": "0.0.6",
  "manifest_version": 2,
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "js/highlightjs.min.js",
        "js/katex.min.js",
        "js/markdown-it.min.js",
        "js/markdown-it-emoji.js",
        "js/texmath.min.js",
        "js/background.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Google Meet Math Support",
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://meet.google.com/*"
  ]
}