The Good Net extension

The Good Net extension

Let the internet be a Good Place ;)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Good Net extension",
  "short_name": "The Good Net",
  "version": "1.0.1",
  "description": "Let the internet be a Good Place ;)",
  "manifest_version": 2,
  "icons": {
    "16": "TheGoodInternet_16.png",
    "24": "TheGoodInternet_24.png",
    "32": "TheGoodInternet_32.png",
    "48": "TheGoodInternet_48.png",
    "64": "TheGoodInternet_64.png",
    "128": "TheGoodInternet_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "good_place.js"
      ],
      "run_at": "document_end"
    }
  ]
}