Better News Feed

Better News Feed

Increases productivity by replacing Facebook News Feed with photo and inspirational quote

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "betterify.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Increases productivity by replacing Facebook News Feed with photo and inspirational quote",
  "icons": {
    "16": "images/bnf-logo16.png",
    "48": "images/bnf-logo48.png",
    "128": "images/bnf-logo128.png"
  },
  "manifest_version": 2,
  "name": "Better News Feed",
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "images/*",
    "pictures.json",
    "quotes.json"
  ],
  "version": "1.3.1"
}