Hangouts Status Reader

Hangouts Status Reader

Allows you to read Google Hangouts statuses directly in the contact info box.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hangouts Status Reader",
  "description": "Allows you to read Google Hangouts statuses directly in the contact info box.",
  "version": "2.0",
  "permissions": [
    "https://mail.google.com/*",
    "https://hangouts.google.com/*",
    "https://apis.google.com/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "script.js"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://hangouts.google.com/*",
        "https://apis.google.com/*"
      ]
    }
  ]
}