Better StackOverflow

Better StackOverflow

Fixes some annoying things about StackOverflow

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Better StackOverflow",
  "description": "Fixes some annoying things about StackOverflow",
  "version": "1.0",
  "author": "Sin Jeong-hun",
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "https://stackoverflow.com/questions/*",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://stackoverflow.com/questions/*"
      ],
      "js": [
        "modifier.js"
      ],
      "css": [
        "my.css"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "settings.html"
  }
}