github-no-more

Annoyed that ^F does not work in long github discussions? Tired from clicking "Load more" over and over again? This extension is for you! Automatically loads all comments and diffs on github.com
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "github-no-more",
  "description": "No more \"Load more...\" on github",
  "version": "0.0.2",
  "homepage_url": "https://github.com/WaffleLapkin/github-no-more",
  "icons": {
    "256": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.github.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "github-no-more@ihatereality.space"
    }
  }
}