Social Media Censorship Research Tool

Social Media Censorship Research Tool

This project uses a browser plug-in to alert users to any Facebook posts of theirs that may have been censored.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Social Media Censorship Research Tool",
  "description": "This project uses a browser plug-in to alert users to any Facebook posts of theirs that may have been censored.",
  "version": "1.1.3",
  "icons": {
    "16": "images/16x16.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "web_accessible_resources": [
    "images/icon.png"
  ],
  "permissions": [
    "storage",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ]
}