News Feed Pera-dicator for Facebook

News Feed Pera-dicator for Facebook

Replacing your entire news feed with French rap punchlines

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "News Feed Pera-dicator for Facebook",
  "version": "1.0.2",
  "description": "Replacing your entire news feed with French rap punchlines",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "http://www.facebook.com/*",
    "https://www.facebook.com/*",
    "http://web.facebook.com/*",
    "https://web.facebook.com/*"
  ],
  "icons": {
    "16": "icon16.jpg",
    "48": "icon48.jpg",
    "128": "icon128.jpg"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.facebook.com/*",
        "https://www.facebook.com/*",
        "http://web.facebook.com/*",
        "https://web.facebook.com/*"
      ],
      "js": [
        "intercept.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://www.facebook.com/*",
        "https://www.facebook.com/*",
        "http://web.facebook.com/*",
        "https://web.facebook.com/*"
      ],
      "js": [
        "eradicate.js"
      ],
      "css": [
        "eradicate.css"
      ],
      "run_at": "document_idle"
    }
  ]
}