FriendlyFeed

FriendlyFeed

A Chrome extension to make Facebooks News Feed more Friendly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FriendlyFeed",
  "version": "0.1.0",
  "description": "A Chrome extension to make Facebooks News Feed more Friendly",
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "/img/logo.png",
      "24": "/img/logo.png",
      "32": "/img/logo.png"
    },
    "default_popup": "extension.html",
    "default_title": "FriendlyFeed"
  },
  "author": "Troy Forster",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "/friendlyFeedClient.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://www.facebook.com/*"
    ]
  },
  "options_page": "settings.html",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "short_name": "FriendlyFeed",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}