GitHub Enhanced Comments

GitHub Enhanced Comments

Automatically replaces placeholder like {repo_name} inside your issues and comments with actual values

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GitHub Enhanced Comments",
  "description": "Automatically replaces placeholder like {repo_name} inside your issues and comments with actual values",
  "version": "1.1.0",
  "icons": {
    "16": "images/icon128.png",
    "48": "images/icon128.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "https://*.github.com/*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ]
}