Git History Browser Extension

Git History Browser Extension

Agrega un botón a github para ver el historial del archivo / Add a button to github to see the file history

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Git History Browser Extension",
  "author": "Luis Reinoso",
  "description": "Agrega un botón a github para ver el historial del archivo / Add a button to github to see the file history",
  "homepage_url": "https://github.com/LuisReinoso/git-history-browser-extension",
  "version": "1.0.8",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gitlab.com/*",
        "https://bitbucket.org/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icons/git-history-16x16.png",
    "48": "icons/git-history-48x48.png",
    "128": "icons/git-history-128x128.png",
    "500": "icons/git-history-500x500.png"
  }
}