TeX for Gmail

TeX for Gmail

Use LaTeX (a method for rendering mathematical formulas) with Gmail.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TeX for Gmail",
  "description": "Use LaTeX (a method for rendering mathematical formulas) with Gmail.",
  "version": "6.7.3",
  "permissions": [
    "storage",
    "https://mail.google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "inboxsdk.js",
        "options.js",
        "texforgmail.js",
        "app.js"
      ],
      "css": [
        "style.css",
        "popups.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "logo128.png",
    "compose.png",
    "view.png"
  ],
  "icons": {
    "128": "logo128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "logo128.png",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "chrome_style": true
  }
}