Magento 2 - composer patches helper

Magento 2 - composer patches helper

Create copy/pastable composer patch definition for vaimo/composer-patches.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Lewis Voncken <[email protected]>",
  "background": {},
  "description": "Create copy/pastable composer patch definition for vaimo/composer-patches.",
  "icons": {
    "128": "images/logo.png"
  },
  "manifest_version": 2,
  "name": "Magento 2 - composer patches helper",
  "permissions": [],
  "short_name": "m2-composer-patches",
  "version": "1.0.0",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*/commit/**",
        "https://github.com/*/*/pull/**"
      ],
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/github-magento2-composer-patch.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ]
}