Netwind Notebooks

Netwind Notebooks

Selective printing of web content

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "2.1.3",
  "name": "__MSG_nw_57__",
  "description": "__MSG_generalDescription__",
  "minimum_chrome_version": "90.0",
  "content_scripts": [
    {
      "js": [
        "js/eminer.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "eventPage.js",
    "type": "module"
  },
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "16": "images/icon16x16.png",
      "24": "images/icon24x24.png",
      "32": "images/icon32x32.png"
    }
  },
  "icons": {
    "16": "images/icon16x16.png",
    "24": "images/icon24x24.png",
    "32": "images/icon32x32.png",
    "48": "images/icon48x48.png",
    "128": "images/icon128x128.png"
  },
  "default_locale": "en",
  "homepage_url": "https://netwind.cc",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "storage",
    "scripting",
    "webRequest",
    "activeTab",
    "unlimitedStorage",
    "downloads",
    "tabs",
    "cookies"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}