StackOverflow: Accepted Answer Has Less Votes

StackOverflow: Accepted Answer Has Less Votes

Highlights the green check mark of accepted Stackoverflow/Stack Exchange answers that aren't the most upvoted answer to the question

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "StackOverflow: Accepted Answer Has Less Votes",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "Highlights the green check mark of accepted Stackoverflow/Stack Exchange answers that aren't the most upvoted answer to the question",
  "homepage_url": "https://jkeat.github.io/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "http://stackoverflow.com/questions/*",
        "https://stackoverflow.com/questions/*",
        "http://*.stackexchange.com/questions/*",
        "https://*.stackexchange.com/questions/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "http://stackoverflow.com/questions/*",
        "https://stackoverflow.com/questions/*",
        "http://*.stackexchange.com/questions/*",
        "https://*.stackexchange.com/questions/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}