Eclipse Che Cloud IDE hosted on OpenShift

Eclipse Che Cloud IDE hosted on OpenShift

Add a button to Github that opens projects on Red Hat's hosted version of Eclipse Che, running on OpenShift.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "4",
  "name": "Eclipse Che Cloud IDE hosted on OpenShift",
  "description": "Add a button to Github that opens projects on Red Hat's hosted version of Eclipse Che, running on OpenShift.",
  "content_scripts": [
    {
      "js": [
        "options.js",
        "script.js"
      ],
      "matches": [
        "https://github.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "32": "osio32.png"
  }
}