Guardrails for Gmail and Google Inbox

Guardrails for Gmail and Google Inbox

A Gmail and Google Inbox extension to help make sure your email ends up in the right hands.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Guardrails for Gmail and Google Inbox",
  "description": "A Gmail and Google Inbox extension to help make sure your email ends up in the right hands.",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "js": [
        "inboxsdk.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "https://mail.google.com/",
    "https://inbox.google.com/"
  ],
  "manifest_version": 2
}