Writing Tips for Gmail from Irregardless.ly

Writing Tips for Gmail from Irregardless.ly

Check your emails against our crowdsourced style guides to catch where your writing could be simpler and clearer. If you have…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Writing Tips for Gmail from Irregardless.ly",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "static/js/content_script.bundle.js"
      ]
    }
  ],
  "icons": {
    "128": "icons/irr-128.png"
  },
  "permissions": [
    "tabs"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "version": "0.1.1"
}