Kindred - Parental Control for Web Content

Kindred - Parental Control for Web Content

Parental control for web content with a private social network just for your family. (BETA)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Kindred - Parental Control for Web Content",
  "homepage_url": "https://thetaset.com/kindred",
  "description": "Parental control for web content with a private social network just for your family. (BETA)",
  "default_locale": "en",
  "omnibox": {
    "keyword": "tt"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "storage",
    "unlimitedStorage",
    "alarms",
    "notifications",
    "webNavigation"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "incognito": "spanning",
  "icons": {
    "16": "icons/kindred_icon_16.png",
    "48": "icons/kindred_icon_48.png",
    "64": "icons/kindred_icon_64.png",
    "128": "icons/kindred_icon_128.png"
  },
  "content_scripts": [],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "src/popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "64": "icons/kindred_icon_64.png",
      "128": "icons/kindred_icon_128.png"
    }
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "https://*.google.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'  'wasm-unsafe-eval' ;img-src * 'self' data: https:; default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src *"
  },
  "version": "0.198"
}