Octobox Web Extension

Octobox Web Extension

Makes your GitHub notifications icon link to Octobox instead of GitHub.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Octobox Web Extension",
  "description": "Makes your GitHub notifications icon link to Octobox instead of GitHub.",
  "version": "1.3.0",
  "short_name": "Octobox",
  "homepage_url": "https://github.com/tfrommen/octobox-web-extension",
  "author": "Thorsten Frommen",
  "icons": {
    "48": "icons/icon.png",
    "96": "icons/[email protected]"
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "js": [
        "content-scripts/github.js"
      ]
    },
    {
      "matches": [
        "*://octobox.io/*"
      ],
      "js": [
        "content-scripts/octobox.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options_ui/page.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ]
}