A Firefox extension that adds a link to the raw patch view on GitHub commit pages
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

manifest.json 276B

1234567891011121314
  1. {
  2. "manifest_version": 2,
  3. "name": "Patch Viewer",
  4. "version": "0.1.0",
  5. "description": "Add a link to the raw patch view on GitHub commit pages",
  6. "content_scripts": [
  7. {
  8. "matches": ["*://github.com/*/*/commit/*"],
  9. "js": ["patch-viewer.js"]
  10. }
  11. ]
  12. }