Rap News Feed for Facebook

Rap News Feed for Facebook

Find yourself spending too much time on Facebook? Eradicate distractions by replacing your entire news feed with rap lyrics.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rap News Feed for Facebook",
  "version": "1.0.0",
  "description": "Find yourself spending too much time on Facebook? Eradicate distractions by replacing your entire news feed with rap lyrics.",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "http://www.facebook.com/*",
    "https://www.facebook.com/*",
    "http://web.facebook.com/*",
    "https://web.facebook.com/*"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "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"
    }
  ]
}