LinkPeelr

LinkPeelr

Know Where Link Is Going Before You Click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LinkPeelr",
  "version": "2.0.3",
  "manifest_version": 2,
  "description": "Know Where Link Is Going Before You Click",
  "icons": {
    "16": "linkpeelr16.png",
    "48": "linkpeelr48.png",
    "128": "linkpeelr128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com/; object-src 'self'",
  "web_accessible_resources": [
    "ajax-loader.gif",
    "jquery.min.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*.facebook.com/*",
        "https://*.twitter.com/*"
      ],
      "css": [
        "tipTip.css"
      ],
      "js": [
        "jquery.min.js",
        "hover_script.js"
      ]
    }
  ],
  "permissions": [
    "cookies",
    "http://linkpeelr.appspot.com/*"
  ]
}