Knowmax

Knowmax

Search inside Knowmax

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Knowmax",
  "description": "Search inside Knowmax",
  "version": "3.8",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "storage",
    "browsingData",
    "activeTab",
    "tabs",
    "scripting"
  ],
  "action": {
    "default_title": "Knowmax",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "main/background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "search-box/search-box.html"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "extension_ids": []
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "search-box/search-box.css"
      ],
      "js": [
        "main/index.js",
        "lib/draggable.js",
        "search-box/search-box.js",
        "main/eventPage.js",
        "main/analytic.js"
      ]
    }
  ],
  "icons": {
    "16": "images/favicon.png"
  },
  "options_page": "option/options.html"
}