Cherry Pie

Cherry Pie

This extension adds a button to Github's Pull Request page that extracts files from one branch and stage them into a new one. That…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cherry Pie",
  "version": "1.6.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "hot-reload.js"
    ]
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "icons": {
    "128": "cherry-128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'"
}