Battery Status Icon

Battery Status Icon

Shows the battery status of the current device.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Battery Status Icon",
  "description": "Shows the battery status of the current device.",
  "version": "1.0",
  "author": "gala92",
  "browser_action": {
    "default_title": "Loading..."
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "presistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage"
  ]
}