AWE Learning Child Safety

AWE Learning Child Safety

AWE Learning has provided, free of charge, a utility to block ads and tracking cookies while using our application. When installed and enabled, you will not receive any cookie notices or targeted ads from our partners.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "AWE Child Safety",
  "description": "A super minimal blocker of ads, trackers and annoyances which works out of the box",
  "manifest_version": 2,
  "version": "0.1.19",
  "homepage_url": "https://github.com/remusao/blockrz",
  "author": "https://redwerk.com",
  "icons": {
    "128": "./icons/icon_128x128_.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "browser_action": {
    "default_title": "AWE Child Safety"
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "content-script.bundle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ]
}