"View Vote totals" without 1000 rep

"View Vote totals" without 1000 rep

Allows anyone to view vote totals (usually a privilege for Stack Exchange users with 1k reputation)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "js": [
        "votetotals.js"
      ],
      "css": [
        "votetotals.css"
      ],
      "matches": [
        "*://*.stackoverflow.com/*",
        "*://superuser.com/*",
        "*://serverfault.com/*",
        "*://*.stackexchange.com/*",
        "*://answers.onstartups.com/*",
        "*://askubuntu.com/*",
        "*://mathoverflow.net/*",
        "*://meta.answers.onstartups.com/*",
        "*://meta.askubuntu.com/*",
        "*://meta.serverfault.com/*",
        "*://meta.superuser.com/*",
        "*://meta.mathoverflow.net/*",
        "*://stackapps.com/*"
      ],
      "exclude_matches": [
        "*://area51.stackexchange.com/*"
      ],
      "include_globs": [
        "*/questions/*",
        "*/review/*",
        "*/search*"
      ]
    }
  ],
  "description": "Allows anyone to view vote totals (usually a privilege for Stack Exchange users with 1k reputation)",
  "name": "\"View Vote totals\" without 1000 rep",
  "version": "1.5.10",
  "manifest_version": 2,
  "homepage_url": "https://stackapps.com/q/3082/9699?view-vote-totals-without-1000-rep",
  "icons": {
    "48": "icon48x48.png",
    "128": "icon128x128.png"
  }
}