met

met

Enrich stackoverflow results on google. Shows you possible answer and for each results: # of answer, and the rank of the top answer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "met",
  "description": "Enrich stackoverflow results on google. Shows you possible answer and for each results: # of answer, and the rank of the top answer ",
  "version": "1.3.6",
  "short_name": "met",
  "minimum_chrome_version": "16.0.884",
  "background": {
    "run_at": "document_end",
    "page": "html/background.html",
    "js": [
      "js/tracker.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "js": [
        "js/jquery.js",
        "js/background.js"
      ],
      "css": [
        "css/bootstrap.css",
        "css/default.min.css"
      ],
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://www.m.facebook.*/*",
        "*://m.facebook.*/*"
      ]
    }
  ],
  "browser_action": {
    "default_title": "met",
    "default_icon": "icon_ex.png",
    "default_popup": "html/popups.html"
  },
  "permissions": [],
  "manifest_version": 2,
  "icons": {
    "16": "icon_ex.png",
    "48": "icon_ex.png",
    "128": "icon_ex.png"
  }
}