Google Drive Traffic Signal

Google Drive Traffic Signal

Useful in K-12, this extension shows green if the Google Drive is up; red, if down; yellow for no internet connection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Drive Traffic Signal",
  "description": "Useful in K-12, this extension shows green if the Google Drive is up; red, if down; yellow for no internet connection.",
  "version": "10.0",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/grey.png",
    "default_title": "Google Drive Traffic Signal",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "http://www.google.com/",
    "https://www.google.com/",
    "background",
    "identity",
    "notifications",
    "alarms",
    "https://www.googleapis.com/*",
    "https://*.googleusercontent.com/*"
  ],
  "oauth2": {
    "client_id": "1043076561303-0ker74na86cjj4v33juj0d429of5sv57.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.metadata.readonly"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiLvYMCsYz2HPnYaNlOx6xREib23fl2jZfxf+AWBucrSENO34ZxQti0rvHCzNdD+4ofGhnyxAoOptEcR1M6bZqd+76WxfCOxBXuzWCqMx7wg2tVqtN01fy4VUHWEeQmF9+bJ/kykhn6ZrQz6XYww5QrkxZYqgA4dEgCw2R92cjSdEtWRXMDNy/jNoiDfp/IB64GR9SEWoXXK6ILRK5JzBxiJ/qCdSFJ9Ou/zbLErJ6rwHTC5862guC0XIvtN+XZF9yijhIH8T++UlYXOBFqLbpCzwT4aFWheBKjApVWlpY/45hqj6jm6g9PCqiFEWSpbceH7Y/1womoua4ZftrRD5hQIDAQAB"
}