Gmail Flash by HelpNinja

Gmail Flash by HelpNinja

Get productive with Gmail. Get work done with your keyboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gmail Flash by HelpNinja ",
  "version": "1.4",
  "description": "Get productive with Gmail. Get work done with your keyboard",
  "permissions": [
    "identity",
    "identity.email",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "fuse.min.js",
        "jquery.min.js",
        "contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "16x16.png",
      "24": "24x24.png",
      "32": "32x32.png",
      "128": "128x128.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "fuse.min.js",
    "arrow.svg",
    "include.js"
  ],
  "manifest_version": 2
}