Inbox Zero FTW for Gmail

Inbox Zero FTW for Gmail

Get rewarded when you clear your inbox with a random animated GIF

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Inbox Zero FTW for Gmail",
  "version": "0.2.4",
  "short_name": "Inbox Zero FTW",
  "description": "Get rewarded when you clear your inbox with a random animated GIF",
  "icons": {
    "16": "assets/images/icon-16.png",
    "32": "assets/images/icon-32.png",
    "48": "assets/images/icon-48.png",
    "64": "assets/images/icon-64.png",
    "128": "assets/images/icon-128.png"
  },
  "background": {
    "scripts": [
      "assets/js/background.js"
    ],
    "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "css": [
        "assets/css/base-min.css",
        "assets/css/styles.css"
      ],
      "js": [
        "assets/js/lib/zepto.min.js",
        "assets/js/init.js"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "assets/html/*",
    "assets/css/*",
    "assets/images/*",
    "assets/js/lib/*"
  ],
  "permissions": [
    "tabs"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "manifest_version": 2
}