FB Ultrasound Edition

FB Ultrasound Edition

Updates the logo on facebook.com to reflect the current state of my feed. All trademarks property of their respective owners.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FB Ultrasound Edition",
  "description": "Updates the logo on facebook.com to reflect the current state of my feed. All trademarks property of their respective owners.",
  "version": "0.1",
  "icons": {
    "16": "ultrasound.png",
    "48": "ultrasound.png",
    "128": "ultrasound.png"
  },
  "permissions": [
    "http://www.facebook.com/*",
    "https://www.facebook.com/*"
  ],
  "web_accessible_resources": [
    "ultrasound.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.facebook.com/*",
        "https://www.facebook.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}