BlackSheep aSocial Network

BlackSheep aSocial Network

Be a black sheep! Use a read-only version of your social network

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BlackSheep aSocial Network",
  "version": "0.1",
  "manifest_version": 2,
  "description": "Be a black sheep! Use a read-only version of your social network",
  "browser_action": {
    "default_title": "aSocial Network",
    "default_icon": "img/icon_256.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "js": [
        "facebook.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "http://*.facebook.com/",
    "https://*.facebook.com/",
    "http://*.messenger.com/",
    "https://*.messenger.com/",
    "http://*.google.com/",
    "https://*.google.com/",
    "http://*.twitter.com/",
    "https://*.twitter.com/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com https://*.google.com https://*.googleapis.com https://www.google-analytics.com; object-src 'self' 'unsafe-eval'",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "128": "img/icon_128.png"
  }
}