CUT THE BULL

CUT THE BULL

Cut the bull. Hides all text that has Trump mentioned in it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CUT THE BULL",
  "short_name": "CUT THE BULL",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Cut the bull. Hides all text that has Trump mentioned in it",
  "homepage_url": "http://www.aarati.me",
  "icons": {
    "16": "icons/shit2.png",
    "48": "icons/shit3.png",
    "128": "icons/shit.png"
  },
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js",
        "onload.js"
      ]
    }
  ],
  "browser_action": {
    "name": "Show trump",
    "default_icon": "icons/shit.png"
  }
}