Notifications Preview for GitHub

Notifications Preview for GitHub

Quickly see your notifications in a popup without leaving the current page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Notifications Preview for GitHub",
  "homepage_url": "https://github.com/tanmayrajani/notifications-preview-github",
  "version": "23.4.6",
  "manifest_version": 2,
  "minimum_chrome_version": "61",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "55.0"
    }
  },
  "permissions": [
    "storage"
  ],
  "description": "Quickly see your notifications in a popup without leaving the current page",
  "icons": {
    "128": "/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "css": [
        "/github-notifications-preview.css"
      ],
      "js": [
        "/options-storage.js",
        "/github-notifications-preview.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "/options-storage.js"
    ]
  },
  "options_ui": {
    "chrome_style": true,
    "page": "/options.html"
  }
}