Whale Finder

Whale Finder

Removing Blue Whale related posts on Twitter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Whale Finder",
  "description": "Removing Blue Whale related posts on Twitter.",
  "version": "1.1",
  "browser_action": {
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "images/whale16.png",
    "32": "images/whale32.png",
    "64": "images/whale64.png",
    "128": "images/whale128.png"
  },
  "background": {
    "scripts": [
      "js/api.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*",
        "https://twitter.com/*"
      ],
      "js": [
        "js/jquery-3.0.0.min.js",
        "js/popup.js"
      ]
    }
  ]
}