Steemification - Notifications for Steemit

Steemification - Notifications for Steemit

Display desktop notifications once new votes and comments on Steemit.com are available

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Steemification - Notifications for Steemit",
  "short_name": "Steemification",
  "version": "1.4",
  "description": "Display desktop notifications once new votes and comments on Steemit.com are available",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "notifications"
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "background.js",
      "steem-rpc.js"
    ]
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "48.png"
  ],
  "browser_action": {
    "default_icon": "48.png",
    "default_popup": "options.html"
  }
}