Wide GitHub

Wide GitHub

Change all GitHub repository and gist pages to be full width and dynamically sized.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wide GitHub",
  "description": "Change all GitHub repository and gist pages to be full width and dynamically sized.",
  "version": "1.6.5",
  "version_name": "1.6.5 MV3",
  "icons": {
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": "icons/icon.png",
    "default_title": "Toggle Wide GitHub"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*"
      ],
      "css": [
        "wide-github.css"
      ],
      "js": [
        "wide-github-toggle.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}