Interest Sniper

Interest Sniper

Snip all FB interests.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Interest Sniper",
  "short_name": "Interest Sniper",
  "description": "Snip all FB interests.",
  "version": "1.0.9",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Interest Sniper",
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon1.png",
    "128": "icon1.png"
  },
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "css": [],
      "js": [
        "js/jquery.js",
        "js/Sniper.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "https://*/*",
    "http://*/*",
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}