Messages to App List

Messages to App List

Adds the Messages web interface to the list of Google Apps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Messages to App List",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "Adds the Messages web interface to the list of Google Apps.",
  "content_scripts": [
    {
      "matches": [
        "https://ogs.google.com/u/0/widget/*",
        "https://*.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "script.js"
  ]
}