Inappropriate Language Blocker

Inappropriate Language Blocker

This is an extension aimed at mainly youth and kids to protect their eyes from vulgar and inappropriate language. This extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Inappropriate Language Blocker",
  "version": "1.1",
  "browser_action": {
    "default_icon": {
      "16": "icon.png"
    }
  },
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon2.png",
    "64": "icon3.png",
    "128": "icon4.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}