Kiosk Page Blocker

Kiosk Page Blocker

This addon is designed to prevent users visiting pages that they shouldn't using customisable filters.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Kiosk Page Blocker",
  "author": "GlitchyPies",
  "version": "2023.5.16.1",
  "description": "Prevent users visiting pages that they shouldn't using customisable filters..",
  "background": {
    "scripts": [
      "filters.js",
      "blocker-background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/screen-with-eye.svg",
      "38": "icons/screen-with-eye.svg"
    },
    "default_title": "Kiosk Page Blocker options."
  },
  "icons": {
    "48": "icons/screen-with-eye.svg",
    "96": "icons/screen-with-eye.svg"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "webRequest",
    "tabs",
    "activeTab",
    "storage",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "options_ui": {
    "page": "blocker-options/blocker-options.html",
    "browser_style": true,
    "open_in_tab": true
  },
  "incognito": "spanning",
  "web_accessible_resources": [
    "icons/forbidden-5469452.svg",
    "page-blocked/page-blocked.html"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "kiosk-link-blocker@cat.org.uk"
    }
  }
}