Stack Overflow Unofficial Patch

Stack Overflow Unofficial Patch

Miscellaneous client-side fixes for bugs on Stack Exchange sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Stack Overflow Unofficial Patch",
  "short_name": "SOUP",
  "description": "Miscellaneous client-side fixes for bugs on Stack Exchange sites",
  "author": "Ilmari Karonen",
  "version": "1.56.2",
  "version_name": "1.56.2",
  "homepage_url": "https://stackapps.com/questions/4486/the-stack-overflow-unofficial-patch-soup",
  "icons": {
    "16": "icon/SOUP_icon_16.png",
    "32": "icon/SOUP_icon_32.png",
    "48": "icon/SOUP_icon_48.png",
    "64": "icon/SOUP_icon_64.png",
    "128": "icon/SOUP_icon_128.png"
  },
  "content_scripts": [
    {
      "js": [
        "SOUP.user.js"
      ],
      "matches": [
        "*://*.stackexchange.com/*",
        "*://*.stackoverflow.com/*",
        "*://*.superuser.com/*",
        "*://*.serverfault.com/*",
        "*://*.stackapps.com/*",
        "*://*.mathoverflow.net/*",
        "*://*.askubuntu.com/*"
      ],
      "exclude_globs": [
        "https://stackoverflow.com/c/*"
      ],
      "run_at": "document_start"
    }
  ]
}