The Borkalizer!

The Borkalizer!

The Borkalizer! is a Chrome browser extension designed to tame all of the obnoxious political content that your friends and family…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "The Borkalizer!",
  "version": "0.0.0.4",
  "manifest_version": 2,
  "options_page": "options.html",
  "icons": {
    "16": "img/swedish_chef_16.png",
    "48": "img/swedish_chef_48.png",
    "128": "img/swedish_chef_128.png"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "borkborkbork.js",
        "translator.js",
        "mutation_summary.js",
        "content_fb.js",
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "contextMenus",
    "http://borkalizer.com/"
  ]
}