News Feed Hider

News Feed Hider

Find yourself spending too much time online? Remove distractions by hiding your entire news feed or replacing it with a quote.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "News Feed Hider",
  "options_page": "options.html",
  "version": "1.2",
  "description": "Find yourself spending too much time online? Remove distractions by hiding your entire news feed or replacing it with a quote.",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "http://www.facebook.com/*",
    "https://www.facebook.com/*",
    "http://api.forismatic.com/*",
    "http://forismatic.com/*"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.facebook.com/*",
        "https://www.facebook.com/*"
      ],
      "js": [
        "jquery.js",
        "hide.js"
      ],
      "css": [
        "hide.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "options.html"
  ]
}