Gmail Contacts

Gmail Contacts

Adds a Google Contacts shortcut to the new Gmail interface

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gmail Contacts",
  "version": "2.0.5",
  "author": "[email protected]",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "img/icon16.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "https://mail.google.com/*",
        "https://drive.google.com/*",
        "https://docs.google.com/*",
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "js/jquery-1.11.3.min.js",
        "js/main.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "24": "img/icon24.png",
    "48": "img/icon48.png",
    "64": "img/icon64.png",
    "72": "img/icon72.png",
    "96": "img/icon96.png",
    "128": "img/icon128.png"
  },
  "manifest_version": 2
}