Chat Moral Censor Lite

Chat Moral Censor Lite

Extension blocks links and email only on the prime.date website chat and start pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chat Moral Censor Lite",
  "description": "Extension blocks links and email only on the prime.date website chat and start pages",
  "version": "2018.3.1",
  "author": "MaxNeutrino",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "<all_urls>",
    "https://ajax.googleapis.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}