Follow GitHub Organization

Follow GitHub Organization

Follow GitHub organizations and get activities on new repositories in your feed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Follow GitHub Organization",
  "version": "0.0.12",
  "description": "Follow GitHub organizations and get activities on new repositories in your feed",
  "permissions": [
    "https://api.followgithub.org/*",
    "storage"
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {},
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "js/index.js"
      ],
      "run_at": "document_end"
    }
  ]
}