What The Hash?

What The Hash?

Find out #wtf everyone is saying

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "What The Hash?",
  "version": "1.0",
  "description": "Find out #wtf everyone is saying",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "96": "96.png",
    "128": "128.png",
    "256": "256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "explained.js"
      ]
    }
  ],
  "background": {
    "page": "background.html",
    "js": [
      "jquery-2.1.0.min.js",
      "background.js"
    ]
  },
  "permissions": [
    "http://api.tagdef.com/*",
    "storage"
  ]
}