MP Info

MP Info

A Chrome extension based on data provided by the They Work For You API (http://www.theyworkforyou.com/api).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MP Info",
  "short_name": "MP Info",
  "description": "A Chrome extension based on data provided by the They Work For You API (http://www.theyworkforyou.com/api).",
  "version": "1.0.0.1",
  "permissions": [
    "http://www.theyworkforyou.com/",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/dist/twfy.min.css",
        "css/dist/jquery.qtip.min.css"
      ],
      "js": [
        "js/dist/vendor.js",
        "js/dist/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/dist/vendor.js",
      "js/dist/event.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "images/wait.gif"
  ],
  "icons": {
    "16": "icon16.jpg",
    "48": "icon48.jpg",
    "128": "icon128.jpg"
  }
}