github.expandinizr

github.expandinizr

Chrome extension that improves the GitHub experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "github.expandinizr",
  "version": "2.0.2",
  "manifest_version": 2,
  "description": "Chrome extension that improves the GitHub experience",
  "homepage_url": "https://github.com/thecodejunkie/github.expandinizr",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "declarativeContent",
    "https://github.com/*",
    "https://gist.github.com/*"
  ],
  "optional_permissions": [
    "http://*/",
    "https://*/"
  ],
  "options_ui": {
    "page": "content/options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "page_action": {
    "default_title": "Toggle ExpandinizR",
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    }
  },
  "background": {
    "scripts": [
      "content/background.min.js"
    ]
  }
}