StackOverview

StackOverview

View quick stats about StackOverflow and StackExchange posts from Google search results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.4",
  "name": "StackOverview",
  "author": "Jason Wang",
  "description": "View quick stats about StackOverflow and StackExchange posts from Google search results",
  "content_scripts": [
    {
      "matches": [
        "*://www.google.com/*",
        "*://www.google.ca/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "http://*.stackoverflow.com/*",
    "https://*.stackoverflow.com/*",
    "http://*.stackexchange.com/*",
    "https://*.stackexchange.com/*"
  ],
  "icons": {
    "48": "icons/so48trans.png",
    "128": "icons/so128trans.png"
  }
}