Sorted Stack

Sorted Stack

An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sorted Stack",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "http://stackoverflow.com/questions/*",
        "https://stackoverflow.com/questions/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.png"
  ],
  "icons": {
    "48": "images/icon.png"
  }
}