Codebox Button for GitHub

Codebox Button for GitHub

This extension adds a button to GitHub that lets you edit your projects directly in Codebox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Codebox Button for GitHub",
  "description": "This extension adds a button to GitHub that lets you edit your projects directly in Codebox",
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "github.js"
      ],
      "matches": [
        "https://github.com/*"
      ]
    }
  ],
  "icons": {
    "128": "icons/128.png"
  },
  "manifest_version": 2,
  "version": "1"
}