Charge Status

Charge Status

Monitor the charging status and battery level of your computer running Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Charge Status",
  "description": "Monitor the charging status and battery level of your computer running Chrome.",
  "manifest_version": 2,
  "version": "1.4.0",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.chargestatus.com/home.html"
      ],
      "js": [
        "page.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "View Charge Status"
  },
  "externally_connectable": {
    "matches": [
      "https://www.chargestatus.com/*"
    ]
  },
  "permissions": [
    "gcm",
    "storage",
    "notifications",
    "background"
  ],
  "icons": {
    "128": "images/icon.128x128.png"
  },
  "options_page": "options.html"
}