Remindly for Chrome

Remindly for Chrome

Never let an email slip through the cracks. Ever.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "minimum_chrome_version": "49",
  "author": "Openmind Technologies",
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/all.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    },
    {
      "all_frames": true,
      "css": [
        "css/gmail.css"
      ],
      "js": [
        "js/gmail.bundle.js"
      ],
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "description": "Never let an email slip through the cracks. Ever.",
  "homepage_url": "https://remindly.cc",
  "icons": {
    "16": "assets/icons/favicon-16.png",
    "32": "assets/icons/favicon-32.png",
    "48": "assets/icons/favicon-48.png",
    "128": "assets/icons/favicon-128.png"
  },
  "manifest_version": 2,
  "name": "Remindly for Chrome",
  "permissions": [
    "storage"
  ],
  "short_name": "Remindly",
  "web_accessible_resources": [
    "assets/logo.png"
  ],
  "version": "0.2.1"
}