Notifier for github - support oauth

Notifier for github - support oauth

This extension uses oauth to pull github notifications and displays them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Notifier for github - support oauth",
  "description": "This extension uses oauth to pull github notifications and displays them.",
  "version": "1.0",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon_offline.png",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "externally_connectable": {
    "matches": [
      "*://powernotifier-b8f9c.firebaseapp.com/*"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "alarms",
    "https://ajax.googleapis.com/",
    "https://github.com/login/oauth/",
    "https://api.github.com/user",
    "https://us-central1-powernotifier-b8f9c.cloudfunctions.net/email"
  ]
}